Index: trunk/phase3/includes/Linker.php |
— | — | @@ -842,7 +842,7 @@ |
843 | 843 | */ |
844 | 844 | private function formatAutocomments( $comment, $title = NULL, $local = false ) { |
845 | 845 | $match = array(); |
846 | | - while (preg_match('/(.*)\/\*\s*(.*?)\s*\*\/(.*)/', $comment,$match)) { |
| 846 | + while (preg_match('!(.*)/\*\s*(.*?)\s*\*/(.*)!', $comment,$match)) { |
847 | 847 | $pre=$match[1]; |
848 | 848 | $auto=$match[2]; |
849 | 849 | $post=$match[3]; |