From b64f456c40f5c0c5e5438fea8a864934e3b3fcf8 Mon Sep 17 00:00:00 2001 From: Richard Foote Date: Tue, 6 Jul 2010 14:43:50 +0200 Subject: [PATCH] [ticket/9659] Signature options in set_user_options The phpBB3 defaults are being used. PHPBB3-9659 --- phpBB/includes/functions_convert.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/phpBB/includes/functions_convert.php b/phpBB/includes/functions_convert.php index 0fdae9b274..c035fd3739 100644 --- a/phpBB/includes/functions_convert.php +++ b/phpBB/includes/functions_convert.php @@ -1025,6 +1025,9 @@ function set_user_options() 'bbcode' => array('bit' => 8, 'default' => 1), 'smilies' => array('bit' => 9, 'default' => 1), 'popuppm' => array('bit' => 10, 'default' => 0), + 'sig_bbcode' => array('bit' => 15, 'default' => 1), + 'sig_smilies' => array('bit' => 16, 'default' => 1), + 'sig_links' => array('bit' => 17, 'default' => 1), ); $option_field = 0;