diff options
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 fb5b91dde9..343fdf6733 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -498,7 +498,7 @@ if ($submit || $preview || $refresh) if (strcmp($subject, strtoupper($subject)) == 0 && $subject) { - $subject = phpbb_strtolower($subject); + $subject = strtolower($subject); } $message_parser->message = (isset($_POST['message'])) ? htmlspecialchars(str_replace(array('\\\'', '\\"', '\\0', '\\\\'), array('\'', '"', '\0', '\\'), $_POST['message'])) : ''; |
