diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2005-05-09 09:03:53 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2005-05-09 09:03:53 +0000 |
commit | 5b650f2c52ee9c42f6bf406da266b8ab635eb7c7 (patch) | |
tree | 3036b24aebf64c031d4db5cb17f79e4d62645654 /phpBB/includes/functions_admin.php | |
parent | 2f68ac78c617ebc542f5f0ec0ca37628b79e407b (diff) | |
download | forums-5b650f2c52ee9c42f6bf406da266b8ab635eb7c7.tar forums-5b650f2c52ee9c42f6bf406da266b8ab635eb7c7.tar.gz forums-5b650f2c52ee9c42f6bf406da266b8ab635eb7c7.tar.bz2 forums-5b650f2c52ee9c42f6bf406da266b8ab635eb7c7.tar.xz forums-5b650f2c52ee9c42f6bf406da266b8ab635eb7c7.zip |
Ratings table is no longer available in this version
git-svn-id: file:///svn/phpbb/trunk@5146 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r-- | phpBB/includes/functions_admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index 989d34a287..013fc8a8c8 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -439,7 +439,7 @@ function delete_posts($where_type, $where_ids, $auto_sync = TRUE) $db->sql_transaction('begin'); - $table_ary = array(POSTS_TABLE, RATINGS_TABLE, REPORTS_TABLE, SEARCH_MATCH_TABLE); + $table_ary = array(POSTS_TABLE, REPORTS_TABLE, SEARCH_MATCH_TABLE); foreach ($table_ary as $table) { |