diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-12-07 15:11:28 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-12-07 15:11:28 +0000 |
commit | 277910a016ccb5a2250af659f228f0d4cb89ba32 (patch) | |
tree | 2d9f3bb763ecec74d549dc87a42e985e14de548c /phpBB/includes/functions_display.php | |
parent | 7428cdfd8542adf7e11e8e94575aeaf3ad0abb57 (diff) | |
download | forums-277910a016ccb5a2250af659f228f0d4cb89ba32.tar forums-277910a016ccb5a2250af659f228f0d4cb89ba32.tar.gz forums-277910a016ccb5a2250af659f228f0d4cb89ba32.tar.bz2 forums-277910a016ccb5a2250af659f228f0d4cb89ba32.tar.xz forums-277910a016ccb5a2250af659f228f0d4cb89ba32.zip |
#6024
git-svn-id: file:///svn/phpbb/trunk@6724 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_display.php')
-rw-r--r-- | phpBB/includes/functions_display.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 663b6bfe19..e875fade70 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -1007,7 +1007,7 @@ function display_reasons($reason_id = 0) // If the reason is defined within the language file, we will use the localized version, else just use the database entry... if (isset($user->lang['report_reasons']['TITLE'][strtoupper($row['reason_title'])]) && isset($user->lang['report_reasons']['DESCRIPTION'][strtoupper($row['reason_title'])])) { - $row['reson_description'] = $user->lang['report_reasons']['DESCRIPTION'][strtoupper($row['reason_title'])]; + $row['reason_description'] = $user->lang['report_reasons']['DESCRIPTION'][strtoupper($row['reason_title'])]; $row['reason_title'] = $user->lang['report_reasons']['TITLE'][strtoupper($row['reason_title'])]; } |