diff options
| author | Mark <MarkieMark1@phpbb.com> | 2010-03-31 14:44:39 +0200 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2010-05-16 19:50:35 +0200 |
| commit | cc8d22bed6bdba0a8f5797eef3627a62c240a48f (patch) | |
| tree | e3d917ee81ef153a4eab8305fca8d82b7c8547cc /phpBB/includes/constants.php | |
| parent | e36da18b1c3a492df5789252600b1fc80805472a (diff) | |
| download | forums-cc8d22bed6bdba0a8f5797eef3627a62c240a48f.tar forums-cc8d22bed6bdba0a8f5797eef3627a62c240a48f.tar.gz forums-cc8d22bed6bdba0a8f5797eef3627a62c240a48f.tar.bz2 forums-cc8d22bed6bdba0a8f5797eef3627a62c240a48f.tar.xz forums-cc8d22bed6bdba0a8f5797eef3627a62c240a48f.zip | |
[feature/notify_status] Define'd constants for notify_status
define'd constants NOTIFY_YES, NOTIFY_NO to replace magic numbers in
forums_watch table and topics_watch table
PHPBB3-9179
Diffstat (limited to 'phpBB/includes/constants.php')
| -rw-r--r-- | phpBB/includes/constants.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 8d31eaba7f..a3da196cf8 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -117,6 +117,11 @@ define('NOTIFY_EMAIL', 0); define('NOTIFY_IM', 1); define('NOTIFY_BOTH', 2); +// Notify status +define('NOTIFY_YES', 0); +define('NOTIFY_NO', 1); + + // Email Priority Settings define('MAIL_LOW_PRIORITY', 4); define('MAIL_NORMAL_PRIORITY', 3); |
