diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2006-03-04 13:50:52 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2006-03-04 13:50:52 +0000 |
commit | 70b20a98f756c0bd3081d5de92997776ae39d6ce (patch) | |
tree | beb2962e8588a3c91cab9b13efda12a884149aa9 /phpBB/includes/constants.php | |
parent | 0525406c3b71654b33928932903360a9a3e2d6ff (diff) | |
download | forums-70b20a98f756c0bd3081d5de92997776ae39d6ce.tar forums-70b20a98f756c0bd3081d5de92997776ae39d6ce.tar.gz forums-70b20a98f756c0bd3081d5de92997776ae39d6ce.tar.bz2 forums-70b20a98f756c0bd3081d5de92997776ae39d6ce.tar.xz forums-70b20a98f756c0bd3081d5de92997776ae39d6ce.zip |
Reporting system revised. Needs some major cleanup and is missig some functionality (assign report, some overviews, decent notifications) but the basics are there. More after the weekend :)
git-svn-id: file:///svn/phpbb/trunk@5601 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r-- | phpBB/includes/constants.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 474ca978e9..82eb84d9b6 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -83,6 +83,10 @@ define('PRIVMSGS_OUTBOX', -2); define('PRIVMSGS_SENTBOX', -1); define('PRIVMSGS_INBOX', 0); +// Report Types +define('REPORT_POST', 1); +define('REPORT_GENERAL', 2); + // Full Folder Actions define('FULL_FOLDER_NONE', -3); define('FULL_FOLDER_DELETE', -2); |