mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
tried to begin adjusting all string functions where applicable - still a *lot* to do.
i hope i catched all relevant sections and did not mess something up. git-svn-id: file:///svn/phpbb/trunk@6452 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -448,9 +448,9 @@ function compose_pm($id, $mode, $action)
|
||||
{
|
||||
$subject = request_var('subject', '', true);
|
||||
|
||||
if (strcmp($subject, strtoupper($subject)) == 0 && $subject)
|
||||
if ($subject && strcmp($subject, utf8_strtoupper($subject)) === 0)
|
||||
{
|
||||
$subject = strtolower($subject);
|
||||
$subject = utf8_strtolower($subject);
|
||||
}
|
||||
|
||||
$message_parser->message = request_var('message', '', true);
|
||||
|
Reference in New Issue
Block a user