aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-11-05 18:51:31 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-11-05 18:51:31 +0000
commit47c00e145fa8b77306b1cd68e7b7614762f51f6f (patch)
treea359dababc4e66276f5bba89819923bf12f1eb9f /phpBB/common.php
parent1e8bc72d1ad6513b21488467dc1c4f0e8e63a8fc (diff)
downloadforums-47c00e145fa8b77306b1cd68e7b7614762f51f6f.tar
forums-47c00e145fa8b77306b1cd68e7b7614762f51f6f.tar.gz
forums-47c00e145fa8b77306b1cd68e7b7614762f51f6f.tar.bz2
forums-47c00e145fa8b77306b1cd68e7b7614762f51f6f.tar.xz
forums-47c00e145fa8b77306b1cd68e7b7614762f51f6f.zip
users_notes table
git-svn-id: file:///svn/phpbb/trunk@4647 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 4e1bc628bc..36cc0f9833 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -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');