From 52163ff7087fbef8aa2188e3e338e1cb12c4611b Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Sun, 27 Aug 2006 17:33:49 +0000 Subject: [PATCH] Fix regular expression bug --- include/functions_permalinks.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions_permalinks.inc.php b/include/functions_permalinks.inc.php index 27cf3bc..4ee589e 100644 --- a/include/functions_permalinks.inc.php +++ b/include/functions_permalinks.inc.php @@ -247,7 +247,7 @@ function serendipity_initPermalinks() { * If you add new patterns, remember to add the new rules to the *.tpl files and * function serendipity_installFiles(). */ - @define('PAT_FILENAME', '0-9a-z\.\_!;,\+\-%'); + @define('PAT_FILENAME', '0-9a-z\.\_!;,\+\-\%'); @define('PAT_FILENAME_MATCH', '[' . PAT_FILENAME . ']+'); @define('PAT_CSS', '@/(serendipity\.css|serendipity_admin\.css)@'); @define('PAT_FEED', '@/(index|atom[0-9]*|rss|b2rss|b2rdf).(rss|rdf|rss2|xml)@'); -- 2.39.5