diff options
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/constants.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 3614586e31..4955c8b0b5 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -41,11 +41,10 @@ define(UNLOCKED, 0); define(LOCKED, 1); // Topic types -define(NORMAL, 0); -define(STICKY, 1); -define(ANNOUCE, 2); -define(GLOB_ANNOUNCE, 3); - +define(POST_NORMAL, 0); +define(POST_STICKY, 1); +define(POST_ANNOUNCE, 2); +define(POST_GLOBAL_ANNOUNCE, 3); // Ban time types define(SECONDS, 1); |