diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2005-05-24 10:48:38 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2005-05-24 10:48:38 +0000 |
commit | 1451204e3f52229ac0918e7cd3a77b186c8e40e7 (patch) | |
tree | aa6ee47f9d6841da31a78499d019fba2b7628061 | |
parent | 918914926b13253ef3a9af40bcdb0ea8b900f497 (diff) | |
download | forums-1451204e3f52229ac0918e7cd3a77b186c8e40e7.tar forums-1451204e3f52229ac0918e7cd3a77b186c8e40e7.tar.gz forums-1451204e3f52229ac0918e7cd3a77b186c8e40e7.tar.bz2 forums-1451204e3f52229ac0918e7cd3a77b186c8e40e7.tar.xz forums-1451204e3f52229ac0918e7cd3a77b186c8e40e7.zip |
Fixed small i18n related error in report.php
git-svn-id: file:///svn/phpbb/trunk@5153 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/report.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/report.php b/phpBB/report.php index 19317afc78..c8441f6efa 100644 --- a/phpBB/report.php +++ b/phpBB/report.php @@ -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_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( 'ID' => $row['reason_id'], |