diff options
Diffstat (limited to 'phpBB/posting.php')
| -rw-r--r-- | phpBB/posting.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index b8f50d657d..f6941369a7 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -529,14 +529,6 @@ if ($submit || $preview || $refresh) { $post_data['topic_cur_post_id'] = request_var('topic_cur_post_id', 0); $post_data['post_subject'] = request_var('subject', '', true); - - // If subject is all-uppercase then we make all lowercase (we do not want to be yelled at too :P) - // Admins/Mods might want to create all-uppercase topics, therefore we do not apply this check to them (they should know better ;)) - if ($post_data['post_subject'] && !$auth->acl_gets('a_', 'm_', $forum_id) && strcmp($post_data['post_subject'], utf8_strtoupper($post_data['post_subject'])) === 0) - { - $post_data['post_subject'] = utf8_strtolower($post_data['post_subject']); - } - $message_parser->message = request_var('message', '', true); $post_data['username'] = request_var('username', $post_data['username']); |
