diff options
Diffstat (limited to 'inc/parser')
-rw-r--r-- | inc/parser/parser.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/parser/parser.php b/inc/parser/parser.php index 9896b8799..dd2b72aa0 100644 --- a/inc/parser/parser.php +++ b/inc/parser/parser.php @@ -751,8 +751,8 @@ class Doku_Parser_Mode_WindowsShareLink extends Doku_Parser_Mode { $punc = '.:?\-;,'; $host = $ltrs.$punc; $any = $ltrs.$gunk.$punc; - - $this->pattern = "[$gunk$punc\s]\\\\\\\\[$host]+?\\\\[$any]+?[$punc]*[^$any]"; + + $this->pattern = "[$gunk$punc\s]\\\\\\\\[$host]+?\\\\[$any]+?(?=['.$punc.']*[^'.$any.'])"; } function connectTo($mode) { |