diff options
author | David M <davidmj@users.sourceforge.net> | 2007-05-14 05:21:48 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2007-05-14 05:21:48 +0000 |
commit | e9b79408b0933abe49af403411c00872b3661981 (patch) | |
tree | 9b5345fd4c3d0bbdd0fe17a6abff034f10146895 /phpBB/includes | |
parent | a0acf78139affd5eedd26126d84bf99f106de3dc (diff) | |
download | forums-e9b79408b0933abe49af403411c00872b3661981.tar forums-e9b79408b0933abe49af403411c00872b3661981.tar.gz forums-e9b79408b0933abe49af403411c00872b3661981.tar.bz2 forums-e9b79408b0933abe49af403411c00872b3661981.tar.xz forums-e9b79408b0933abe49af403411c00872b3661981.zip |
#10883
git-svn-id: file:///svn/phpbb/trunk@7564 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-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 5cbb3b4515..044dac541b 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2747,7 +2747,7 @@ function make_clickable($text, $server_url = false, $class = 'postlink') // matches an email@domain type address at the start of a line, or after a space or after what might be a BBCode. $magic_url_match[] = '/(^|[\n\t (>\]])(' . get_preg_expression('email') . ')/ie'; - $magic_url_replace[] = "make_clickable_callback(MAGIC_URL_EMAIL, array('\$1', '\$2'), '')"; + $magic_url_replace[] = "make_clickable_callback(MAGIC_URL_EMAIL, '\$1', '\$2', '', '')"; } return preg_replace($magic_url_match, $magic_url_replace, $text); |