From 1451204e3f52229ac0918e7cd3a77b186c8e40e7 Mon Sep 17 00:00:00 2001 From: Bart van Bragt Date: Tue, 24 May 2005 10:48:38 +0000 Subject: [PATCH] Fixed small i18n related error in report.php git-svn-id: file:///svn/phpbb/trunk@5153 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/report.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'],