diff options
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r-- | phpBB/includes/constants.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 5f82d4f2a8..5dbe9960f7 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -40,6 +40,13 @@ define(ADMIN, 1); define(UNLOCKED, 0); define(LOCKED, 1); +// Topic types +define(NORMAL, 0); +define(STICKY, 1); +define(ANNOUCE, 2); +define(GLOB_ANNOUNCE, 3); + + // Ban time types define(SECONDS, 1); define(MINUTES, 2); |