|
From: Paul S. O. <ps...@us...> - 2001-11-09 13:26:58
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv15462/includes
Modified Files:
constants.php
Log Message:
Altered for constant table names
Index: constants.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/constants.php,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -r1.39 -r1.40
*** constants.php 2001/11/03 19:17:06 1.39
--- constants.php 2001/11/09 13:26:55 1.40
***************
*** 21,28 ****
***************************************************************************/
- //
- // Constants
- //
-
// Debug Level
define(DEBUG, 1); // Debugging on
--- 21,24 ----
***************
*** 90,94 ****
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);
--- 86,89 ----
***************
*** 161,164 ****
--- 156,161 ----
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');
|