mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
users_notes table
git-svn-id: file:///svn/phpbb/trunk@4647 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
1e8bc72d1a
commit
47c00e145f
1 changed files with 2 additions and 1 deletions
|
@ -192,12 +192,13 @@ define('TOPICS_TRACK_TABLE', $table_prefix.'topics_marking');
|
|||
define('TOPICS_WATCH_TABLE', $table_prefix.'topics_watch');
|
||||
define('USER_GROUP_TABLE', $table_prefix.'user_group');
|
||||
define('USERS_TABLE', $table_prefix.'users');
|
||||
define('USERS_NOTES_TABLE', $table_prefix.'users_notes');
|
||||
define('WORDS_TABLE', $table_prefix.'words');
|
||||
define('POLL_OPTIONS_TABLE', $table_prefix.'poll_results');
|
||||
define('POLL_VOTES_TABLE', $table_prefix.'poll_voters');
|
||||
define('ZEBRA_TABLE', $table_prefix.'zebra');
|
||||
|
||||
define('STRIP', get_magic_quotes_gpc() ? true : false);
|
||||
define('STRIP', (get_magic_quotes_gpc()) ? true : false);
|
||||
|
||||
// Set PHP error handler to ours
|
||||
set_error_handler('msg_handler');
|
||||
|
|
Loading…
Add table
Reference in a new issue