regex must be marked as unicode or that range won't work
authorBrion Vibber <brion@users.mediawiki.org>
Fri, 7 Jul 2006 16:54:51 +0000 (16:54 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Fri, 7 Jul 2006 16:54:51 +0000 (16:54 +0000)
languages/LanguageHe.php

index a5db063..39ca468 100644 (file)
@@ -238,7 +238,7 @@ class LanguageHe extends LanguageUtf8 {
         * @return regular expression which includes the word trails in the link
         */
        public function linkTrail() {
-               return '/^([a-z,א-ת]+)(.*)$/sD';
+               return '/^([a-z,א-ת]+)(.*)$/sDu';
        }
        
        /**