diff options
author | Robby Cornelissen <robby.cornelissen@gmail.com> | 2005-09-30 17:52:49 +0200 |
---|---|---|
committer | Robby Cornelissen <robby.cornelissen@gmail.com> | 2005-09-30 17:52:49 +0200 |
commit | 1c88f0b185ca8436df98f7bab63e488e843baf39 (patch) | |
tree | d42dc90223e5df53782bd7e826ba901e46112db1 | |
parent | 7cace34d7f9a4e3baeaa82ef451b2c008390ea2c (diff) | |
download | rpg-1c88f0b185ca8436df98f7bab63e488e843baf39.tar.gz rpg-1c88f0b185ca8436df98f7bab63e488e843baf39.tar.bz2 |
allow dots in interwiki names
darcs-hash:20050930155249-0fef0-16280e1c28947a2604e04fb3311b97f207b6234a.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 53b6e8ea6..d2dc49a5d 100644 --- a/inc/parser/handler.php +++ b/inc/parser/handler.php @@ -396,7 +396,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-Z\.]+>{1}.*$/u',$link[0]) ) { // Interwiki $interwiki = preg_split('/>/u',$link[0]); $this->_addCall( |