aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-06-16 16:43:05 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-06-16 16:43:05 +0000
commit3479343882bd0e9e767723ad6cbd8bc17c156568 (patch)
tree0bf682a6ca7d13fb0a4943ec59898ba4d136dcae /phpBB/includes
parentdc2cd415d327c50b28182ca76c1ca2956e70a771 (diff)
downloadforums-3479343882bd0e9e767723ad6cbd8bc17c156568.tar
forums-3479343882bd0e9e767723ad6cbd8bc17c156568.tar.gz
forums-3479343882bd0e9e767723ad6cbd8bc17c156568.tar.bz2
forums-3479343882bd0e9e767723ad6cbd8bc17c156568.tar.xz
forums-3479343882bd0e9e767723ad6cbd8bc17c156568.zip
Fixed spelling error in ANNOUNCEMENT which in caused an incorrect check to occur
git-svn-id: file:///svn/phpbb/trunk@503 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/constants.php9
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);