diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2009-06-18 11:07:22 +0000 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2009-06-18 11:07:22 +0000 |
commit | ab33dd2b08b384c85c8d22b8fb481b248491fc93 (patch) | |
tree | 6fdb788ce01ce99327c1e226e0a99a88fde85ee4 /phpBB/posting.php | |
parent | 815bbac230917ae2110bd9d719f763d5bba1c52f (diff) | |
download | forums-ab33dd2b08b384c85c8d22b8fb481b248491fc93.tar forums-ab33dd2b08b384c85c8d22b8fb481b248491fc93.tar.gz forums-ab33dd2b08b384c85c8d22b8fb481b248491fc93.tar.bz2 forums-ab33dd2b08b384c85c8d22b8fb481b248491fc93.tar.xz forums-ab33dd2b08b384c85c8d22b8fb481b248491fc93.zip |
Change bug #26545 - Smilies no longer require the f_bbcode permission.
Authorised by: acydburn
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9615 89ea8834-ac86-4346-8a33-228a782c2dd0
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 013e4da633..4b715a66a2 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -494,7 +494,7 @@ if ($mode == 'edit' && $post_data['bbcode_uid']) // HTML, BBCode, Smilies, Images and Flash status $bbcode_status = ($config['allow_bbcode'] && $auth->acl_get('f_bbcode', $forum_id)) ? true : false; -$smilies_status = ($bbcode_status && $config['allow_smilies'] && $auth->acl_get('f_smilies', $forum_id)) ? true : false; +$smilies_status = ($config['allow_smilies'] && $auth->acl_get('f_smilies', $forum_id)) ? true : false; $img_status = ($bbcode_status && $auth->acl_get('f_img', $forum_id)) ? true : false; $url_status = ($config['allow_post_links']) ? true : false; $flash_status = ($bbcode_status && $auth->acl_get('f_flash', $forum_id) && $config['allow_post_flash']) ? true : false; |