diff options
author | Cullen Walsh <brainy@phpbb.com> | 2010-03-02 12:22:11 -0800 |
---|---|---|
committer | Cullen Walsh <brainy@phpbb.com> | 2010-03-02 12:22:11 -0800 |
commit | 965ab55394f1da50b58cb88ac1bd18c92329c2c8 (patch) | |
tree | 42e8004d0ee849ab86a791ac31fce1de5487aed9 /phpBB/posting.php | |
parent | 72e2af08e14abd32aec0187fb644bfadd158fc79 (diff) | |
download | forums-965ab55394f1da50b58cb88ac1bd18c92329c2c8.tar forums-965ab55394f1da50b58cb88ac1bd18c92329c2c8.tar.gz forums-965ab55394f1da50b58cb88ac1bd18c92329c2c8.tar.bz2 forums-965ab55394f1da50b58cb88ac1bd18c92329c2c8.tar.xz forums-965ab55394f1da50b58cb88ac1bd18c92329c2c8.zip |
Parse urls in signature taking into account the allow_sig_links config option introduced in phpBB 3.0.6, per bug #57105
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |