diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-10-25 12:25:13 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-10-25 12:25:13 +0200 |
commit | e47425844e84d54c659280c04f450a3526b4e09d (patch) | |
tree | eb907b478c59801dd691dfef723b169560522cbf /system/helpers/url_helper.php | |
parent | 9093042c1f56bbdce2785ec5de0cd4180b4e6216 (diff) |
Add missing delimiter in preg_quote() occurences (fix #1929)
Diffstat (limited to 'system/helpers/url_helper.php')
-rw-r--r-- | system/helpers/url_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/url_helper.php b/system/helpers/url_helper.php index de5bdec31..dc77246dc 100644 --- a/system/helpers/url_helper.php +++ b/system/helpers/url_helper.php @@ -489,7 +489,7 @@ if ( ! function_exists('url_title')) $separator = '_'; } - $q_separator = preg_quote($separator); + $q_separator = preg_quote($separator, '#'); $trans = array( '&.+?;' => '', |