From 965ab55394f1da50b58cb88ac1bd18c92329c2c8 Mon Sep 17 00:00:00 2001 From: Cullen Walsh Date: Tue, 2 Mar 2010 12:22:11 -0800 Subject: [PATCH] Parse urls in signature taking into account the allow_sig_links config option introduced in phpBB 3.0.6, per bug #57105 --- phpBB/posting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/posting.php b/phpBB/posting.php index 6a95dce489..5f27b61aae 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1152,7 +1152,7 @@ if (!sizeof($error) && $preview) $parse_sig->bbcode_bitfield = $preview_signature_bitfield; // Not sure about parameters for bbcode/smilies/urls... in signatures - $parse_sig->format_display($config['allow_sig_bbcode'], true, $config['allow_sig_smilies']); + $parse_sig->format_display($config['allow_sig_bbcode'], $config['allow_sig_links'], $config['allow_sig_smilies']); $preview_signature = $parse_sig->message; unset($parse_sig); }