diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-08 13:40:05 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-08 13:40:05 -0500 |
commit | 7b0b6fc63c2593cafaa84cc38a9b3029af1ed369 (patch) | |
tree | dd9537e31790c9be5f67dd3780d9015bbba5adeb /phpBB/includes/constants.php | |
parent | b59463552644ca4afd9e8ca7edd761ae382fc8ed (diff) | |
download | forums-7b0b6fc63c2593cafaa84cc38a9b3029af1ed369.tar forums-7b0b6fc63c2593cafaa84cc38a9b3029af1ed369.tar.gz forums-7b0b6fc63c2593cafaa84cc38a9b3029af1ed369.tar.bz2 forums-7b0b6fc63c2593cafaa84cc38a9b3029af1ed369.tar.xz forums-7b0b6fc63c2593cafaa84cc38a9b3029af1ed369.zip |
[ticket/11103] Forgot a constant
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r-- | phpBB/includes/constants.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index de289c73dc..7a3c73e987 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -273,6 +273,7 @@ define('TOPICS_POSTED_TABLE', $table_prefix . 'topics_posted'); define('TOPICS_TRACK_TABLE', $table_prefix . 'topics_track'); define('TOPICS_WATCH_TABLE', $table_prefix . 'topics_watch'); define('USER_GROUP_TABLE', $table_prefix . 'user_group'); +define('USER_NOTIFICATIONS_TABLE', $table_prefix . 'user_notifications'); define('USERS_TABLE', $table_prefix . 'users'); define('WARNINGS_TABLE', $table_prefix . 'warnings'); define('WORDS_TABLE', $table_prefix . 'words'); |