diff options
author | andi <andi@splitbrain.org> | 2005-04-18 20:40:11 +0200 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-04-18 20:40:11 +0200 |
commit | 71352def8211fd38eafe887a9ccd0e5365b34962 (patch) | |
tree | 77229b6da810d80dba09a61493cc8a1d87a99e5a /inc/parser/handler.php | |
parent | bb0a59d46949357f85e4a8deabff585e56b906e5 (diff) | |
download | rpg-71352def8211fd38eafe887a9ccd0e5365b34962.tar.gz rpg-71352def8211fd38eafe887a9ccd0e5365b34962.tar.bz2 |
fixed email links #259
darcs-hash:20050418184011-9977f-acd3a6583e08ce3732af5ffc4fdc3027e284173e.gz
Diffstat (limited to 'inc/parser/handler.php')
-rw-r--r-- | inc/parser/handler.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/parser/handler.php b/inc/parser/handler.php index f36a4f151..fbe10d431 100644 --- a/inc/parser/handler.php +++ b/inc/parser/handler.php @@ -442,9 +442,9 @@ class Doku_Handler { return TRUE; } - function email($match, $state, $pos) { + function emaillink($match, $state, $pos) { $email = preg_replace(array('/^</','/>$/'),'',$match); - $this->__addCall('email',array($email, NULL), $pos); + $this->__addCall('emaillink',array($email, NULL), $pos); return TRUE; } |