diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-09 13:26:55 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-09 13:26:55 +0000 |
commit | 4e0ec70803fbe176cda9775d34aacefedc4cd4cb (patch) | |
tree | fa989ec176aa8da924cfa3c452d5dc99aefd242e /phpBB/includes/constants.php | |
parent | 16a20599ff0d05a7955f33ed7f423547d3e63c2e (diff) | |
download | forums-4e0ec70803fbe176cda9775d34aacefedc4cd4cb.tar forums-4e0ec70803fbe176cda9775d34aacefedc4cd4cb.tar.gz forums-4e0ec70803fbe176cda9775d34aacefedc4cd4cb.tar.bz2 forums-4e0ec70803fbe176cda9775d34aacefedc4cd4cb.tar.xz forums-4e0ec70803fbe176cda9775d34aacefedc4cd4cb.zip |
Altered for constant table names
git-svn-id: file:///svn/phpbb/trunk@1297 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r-- | phpBB/includes/constants.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 8af243322d..786d3ecf4b 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -20,10 +20,6 @@ * ***************************************************************************/ -// -// Constants -// - // Debug Level define(DEBUG, 1); // Debugging on //define(DEBUG, 0); // Debugging off @@ -89,7 +85,6 @@ define(CRITICAL_ERROR, 204); define(PRIVMSGS_READ_MAIL, 0); define(PRIVMSGS_NEW_MAIL, 1); define(PRIVMSGS_SENT_MAIL, 2); -define(PRIVMSGS_SAVED_MAIL, 3); define(PRIVMSGS_SAVED_IN_MAIL, 3); define(PRIVMSGS_SAVED_OUT_MAIL, 4); @@ -160,6 +155,8 @@ define('PRIVMSGS_IGNORE_TABLE', $table_prefix.'privmsgs_ignore'); define('PRUNE_TABLE', $table_prefix.'forum_prune'); define('RANKS_TABLE', $table_prefix.'ranks'); define('SEARCH_TABLE', $table_prefix.'search_results'); +define('SEARCH_WORD_TABLE', $table_prefix.'search_wordlist'); +define('SEARCH_MATCH_TABLE', $table_prefix.'search_wordmatch'); define('SESSIONS_TABLE', $table_prefix.'sessions'); define('SMILIES_TABLE', $table_prefix.'smilies'); define('THEMES_TABLE', $table_prefix.'themes'); |