diff options
| author | Nils Adermann <naderman@naderman.de> | 2010-05-16 19:51:25 +0200 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2010-05-16 19:51:25 +0200 |
| commit | 0bf2c3eed551e57667e1fb14d0d80e347af6fc72 (patch) | |
| tree | e3d917ee81ef153a4eab8305fca8d82b7c8547cc /phpBB/includes/constants.php | |
| parent | e36da18b1c3a492df5789252600b1fc80805472a (diff) | |
| parent | cc8d22bed6bdba0a8f5797eef3627a62c240a48f (diff) | |
| download | forums-0bf2c3eed551e57667e1fb14d0d80e347af6fc72.tar forums-0bf2c3eed551e57667e1fb14d0d80e347af6fc72.tar.gz forums-0bf2c3eed551e57667e1fb14d0d80e347af6fc72.tar.bz2 forums-0bf2c3eed551e57667e1fb14d0d80e347af6fc72.tar.xz forums-0bf2c3eed551e57667e1fb14d0d80e347af6fc72.zip | |
Merge branch 'feature/notify_status' into develop-olympus
* feature/notify_status:
[feature/notify_status] Define'd constants for notify_status
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); |
