1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-04 14:47:52 +02:00
git-svn-id: file:///svn/phpbb/trunk@7268 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2007-04-02 19:25:27 +00:00
parent 9fcbcb6265
commit 01dd61ee18

View File

@ -61,11 +61,12 @@ class acp_reasons
$row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
if (strtolower($row['reason_title']) == 'other')
if (strtolower($row['reason_title']) == 'other' || strtolower($reason_row['reason_title']) == 'other')
{
$reason_row['reason_title'] = 'other';
}
else if ($row['reason_title'] != $reason_row['reason_title'])
if ($row['reason_title'] != $reason_row['reason_title'])
{
$check_double = true;
}