]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add escaping of /.
authorAdrian Lang <mail@adrianlang.de>
Wed, 15 Apr 2009 11:29:52 +0000 (13:29 +0200)
committerAdrian Lang <mail@adrianlang.de>
Wed, 15 Apr 2009 11:29:52 +0000 (13:29 +0200)
actions/noticesearch.php

index 0828e47d77cf46c5a8dafdcdd0ffc16d70853a96..d996998fc6026328cc6a8271756393203b2202fa 100644 (file)
@@ -184,11 +184,13 @@ class SearchNoticeListItem extends NoticeListItem {
     function highlight($text, $terms)
     {
         /* Highligh search terms */
-        $pattern = '/('.implode('|', array_map('preg_quote', array_map('htmlspecialchars', $terms))).')/i';
+        $options = implode('|', array_map('preg_quote', array_map('htmlspecialchars', $terms),
+                                                            array_fill(0, sizeof($terms), '/')));
+        $pattern = "/($options)/i";
         $result  = preg_replace($pattern, '<strong>\\1</strong>', $text);
 
         /* Remove highlighting from inside links, loop incase multiple highlights in links */
-        $pattern = '/(href="[^"]*)<strong>('.implode('|', array_map('preg_quote', array_map('htmlspecialchars', $terms))).')<\/strong>([^"]*")/iU';
+        $pattern = '/(href="[^"]*)<strong>('.$options.')<\/strong>([^"]*")/iU';
         do {
             $result = preg_replace($pattern, '\\1\\2\\3', $result, -1, $count);
         } while ($count);