aboutsummaryrefslogtreecommitdiff
path: root/phpBB
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2010-03-02 21:41:24 +0100
committerNils Adermann <naderman@naderman.de>2010-03-02 21:41:24 +0100
commitbe78817d27d12bea25f445e04c143def8135831a (patch)
tree0f69e14c9690ae71b71a6734666534b16efb75ca /phpBB
parentMerge branch 'bug/aptx/54945' into develop-olympus (diff)
parentParse urls in signature taking into account the allow_sig_links config option... (diff)
downloadphpbb-be78817d27d12bea25f445e04c143def8135831a.tar.gz
phpbb-be78817d27d12bea25f445e04c143def8135831a.tar.bz2
phpbb-be78817d27d12bea25f445e04c143def8135831a.zip
Merge remote branch 'github-ckwalsh/bug/57105' into bug/ckwalsh/57105
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/posting.php2
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);
}