aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/includes/functions.php2
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;
}