diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-06-07 19:32:23 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-06-07 19:32:23 +0000 |
commit | 0e7adebad6e61c066b52e5480d5aa36a23571388 (patch) | |
tree | 084461c12434d2b18e791d482ee352566fc0b65e /phpBB/includes/functions_display.php | |
parent | 13b9021ae436a625aed61ba20b9d337bf585f6ba (diff) | |
download | forums-0e7adebad6e61c066b52e5480d5aa36a23571388.tar forums-0e7adebad6e61c066b52e5480d5aa36a23571388.tar.gz forums-0e7adebad6e61c066b52e5480d5aa36a23571388.tar.bz2 forums-0e7adebad6e61c066b52e5480d5aa36a23571388.tar.xz forums-0e7adebad6e61c066b52e5480d5aa36a23571388.zip |
ok, sorry for this. :/
- cleaned up table names/constants
git-svn-id: file:///svn/phpbb/trunk@6021 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_display.php')
-rw-r--r-- | phpBB/includes/functions_display.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index b0d1b03809..32a6f5e8fc 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -571,7 +571,7 @@ function get_moderators(&$forum_moderators, $forum_id = false) } $sql = 'SELECT * - FROM ' . MODERATOR_TABLE . " + FROM ' . MODERATOR_CACHE_TABLE . " WHERE display_on_index = 1 $forum_sql"; $result = $db->sql_query($sql, 3600); @@ -900,7 +900,7 @@ function display_reasons($reason_id = 0) global $db, $user, $template; $sql = 'SELECT * - FROM ' . REASONS_TABLE . ' + FROM ' . REPORTS_REASONS_TABLE . ' ORDER BY reason_order ASC'; $result = $db->sql_query($sql); |