diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-03-25 19:52:08 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-03-25 19:52:08 +0100 |
commit | e08dda3feff2a4a598659fae773a33ce092d7c47 (patch) | |
tree | 799123630b846a7d286631325d99eafae2c4091d | |
parent | 204b54e689c70b6a3845a2a9ae1c1ec9cf99d6d1 (diff) | |
download | rpg-e08dda3feff2a4a598659fae773a33ce092d7c47.tar.gz rpg-e08dda3feff2a4a598659fae773a33ce092d7c47.tar.bz2 |
allow numbers in interwiki descriptors FS#1358
darcs-hash:20080325185208-7ad00-d5181f3d82f89f6ed1d4ca9068db4123df8d443b.gz
-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 b36fd142b..41449d824 100644 --- a/inc/parser/handler.php +++ b/inc/parser/handler.php @@ -455,7 +455,7 @@ class Doku_Handler { //decide which kind of link it is - if ( preg_match('/^[a-zA-Z\.]+>{1}.*$/u',$link[0]) ) { + if ( preg_match('/^[a-zA-Z0-9\.]+>{1}.*$/u',$link[0]) ) { // Interwiki $interwiki = preg_split('/>/u',$link[0]); $this->_addCall( |