mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Fixed small i18n related error in report.php
git-svn-id: file:///svn/phpbb/trunk@5153 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
918914926b
commit
1451204e3f
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ while ($row = $db->sql_fetchrow($result))
|
||||||
|
|
||||||
$reason_title = (!empty($user->lang['report_reasons']['TITLE'][$row['reason_name']])) ? $user->lang['report_reasons']['TITLE'][$row['reason_name']] : ucwords(str_replace('_', ' ', $row['reason_name']));
|
$reason_title = (!empty($user->lang['report_reasons']['TITLE'][$row['reason_name']])) ? $user->lang['report_reasons']['TITLE'][$row['reason_name']] : ucwords(str_replace('_', ' ', $row['reason_name']));
|
||||||
|
|
||||||
$reason_desc = (!empty($user->lang['report_reasons']['DESCRIPTION'][$row['reason_name']])) ? $user->lang['report_reasons']['DESCRIPTION'][$row['reason_name']] : $row['reason_desc'];
|
$reason_desc = (!empty($user->lang['report_reasons']['DESCRIPTION'][$row['reason_name']])) ? $user->lang['report_reasons']['DESCRIPTION'][$row['reason_name']] : $row['reason_description'];
|
||||||
|
|
||||||
$template->assign_block_vars('reason', array(
|
$template->assign_block_vars('reason', array(
|
||||||
'ID' => $row['reason_id'],
|
'ID' => $row['reason_id'],
|
||||||
|
|
Loading…
Add table
Reference in a new issue