1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-02 13:47:55 +02:00

Parse urls in signature taking into account the allow_sig_links config option introduced in phpBB 3.0.6, per bug #57105

This commit is contained in:
Cullen Walsh 2010-03-02 12:22:11 -08:00
parent 72e2af08e1
commit 965ab55394

View File

@ -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);
}