From e9b79408b0933abe49af403411c00872b3661981 Mon Sep 17 00:00:00 2001 From: David M Date: Mon, 14 May 2007 05:21:48 +0000 Subject: [PATCH] #10883 git-svn-id: file:///svn/phpbb/trunk@7564 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);