From afdff15fb9b99bec40e437e5071c934d7c70f1e5 Mon Sep 17 00:00:00 2001 From: Ludovic Arnaud Date: Thu, 6 Mar 2003 01:13:44 +0000 Subject: [PATCH] Implementing post reporting git-svn-id: file:///svn/phpbb/trunk@3601 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/common.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpBB/common.php b/phpBB/common.php index 4ae0e2fc9c..89a3fb053f 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -130,6 +130,8 @@ define('PRIVMSGS_TABLE', $table_prefix.'privmsgs'); define('PRIVMSGS_TEXT_TABLE', $table_prefix.'privmsgs_text'); define('RANKS_TABLE', $table_prefix.'ranks'); define('RATINGS_TABLE', $table_prefix.'ratings'); +define('REPORTS_TABLE', $table_prefix.'reports'); +define('REASONS_TABLE', $table_prefix.'reports_reasons'); define('SEARCH_TABLE', $table_prefix.'search_results'); define('SEARCH_WORD_TABLE', $table_prefix.'search_wordlist'); define('SEARCH_MATCH_TABLE', $table_prefix.'search_wordmatch');