diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-05-28 18:46:10 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-05-28 18:46:10 +0000 |
commit | 8385b34222d421a258b934f459e9c6d869f80576 (patch) | |
tree | 20500590c6bbef9e1d7d0da718e1776a59698e2a /phpBB/includes/functions.php | |
parent | 17b6b1e230cd51b4cb76e41243af827b596895e2 (diff) | |
download | forums-8385b34222d421a258b934f459e9c6d869f80576.tar forums-8385b34222d421a258b934f459e9c6d869f80576.tar.gz forums-8385b34222d421a258b934f459e9c6d869f80576.tar.bz2 forums-8385b34222d421a258b934f459e9c6d869f80576.tar.xz forums-8385b34222d421a258b934f459e9c6d869f80576.zip |
do not put mailto: in front of the text if parsing email address
git-svn-id: file:///svn/phpbb/trunk@7695 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 8ac603fb11..64d4b1ba37 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2709,8 +2709,8 @@ function make_clickable_callback($type, $whitespace, $url, $relative_url, $class case MAGIC_URL_EMAIL: $tag = 'e'; - $url = 'mailto:' . $url; $text = (strlen($url) > 55) ? substr($url, 0, 39) . ' ... ' . substr($url, -10) : $url; + $url = 'mailto:' . $url; break; } |