Sotaro KARASAWA 9 лет назад
Родитель
Сommit
c5df652054
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      resource/js/crowi.js

+ 2 - 1
resource/js/crowi.js

@@ -346,7 +346,8 @@ $(function() {
     var escape = function(s) {
       return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
     };
-    var pattern = escape(shortPath) + '(/)?$';
+    path = Crowi.escape(path);
+    var pattern = escape(Crowi.escape(shortPath)) + '(/)?$';
 
     $link.html(path.replace(new RegExp(pattern), '<strong>' + shortPath + '$1</strong>'));
   });