diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-03-14 02:35:04 -0700 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-03-14 02:35:04 -0700 |
commit | d0caa5642f6e322a026bd5bdac4585ff1b2f40da (patch) | |
tree | 9a1b11adec83d05f3ba7f148d71ddc8a369e8b2d /inc | |
parent | 7651b376ab78457d123e1c3513a6a4b8b0d5a7e7 (diff) | |
parent | 0b9869484e3052d68e5939bf626fbd3a840d3062 (diff) | |
download | rpg-d0caa5642f6e322a026bd5bdac4585ff1b2f40da.tar.gz rpg-d0caa5642f6e322a026bd5bdac4585ff1b2f40da.tar.bz2 |
Merge pull request #86 from lupo49/master
Parser: Allow parser to fully recognize windows share links with a hyphen character in it
Diffstat (limited to 'inc')
-rw-r--r-- | inc/parser/parser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/parser.php b/inc/parser/parser.php index 68d4e4569..cf132ce97 100644 --- a/inc/parser/parser.php +++ b/inc/parser/parser.php @@ -929,7 +929,7 @@ class Doku_Parser_Mode_windowssharelink extends Doku_Parser_Mode { var $pattern; function preConnect() { - $this->pattern = "\\\\\\\\\w+?(?:\\\\[\w$]+)+"; + $this->pattern = "\\\\\\\\\w+?(?:\\\\[\w-$]+)+"; } function connectTo($mode) { |