diff options
author | Andreas Gohr <andi@splitbrain.org> | 2010-10-02 19:48:26 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2010-10-02 19:49:36 +0200 |
commit | 15f1b77cd64a0f676733cf10227129deffcc922b (patch) | |
tree | be3cddd72dec59537224b4da2e163ebe385de9fb | |
parent | 341f60512614ff9a4ad206e33369aa199b3f1330 (diff) | |
download | rpg-15f1b77cd64a0f676733cf10227129deffcc922b.tar.gz rpg-15f1b77cd64a0f676733cf10227129deffcc922b.tar.bz2 |
more relaxed recognition of windows share links FS#1991
-rw-r--r-- | inc/parser/handler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/handler.php b/inc/parser/handler.php index acca3f5a1..a96e6b9db 100644 --- a/inc/parser/handler.php +++ b/inc/parser/handler.php @@ -440,7 +440,7 @@ class Doku_Handler { array($link[0],$link[1],strtolower($interwiki[0]),$interwiki[1]), $pos ); - }elseif ( preg_match('/^\\\\\\\\[\w.:?\-;,]+?\\\\/u',$link[0]) ) { + }elseif ( preg_match('/^\\\\\\\\[^\\\\]+?\\\\/u',$link[0]) ) { // Windows Share $this->_addCall( 'windowssharelink', |