diff options
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r-- | phpBB/includes/constants.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 37b448df9f..3c049a1153 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -141,6 +141,12 @@ define('BBCODE_UID_LEN', 5); // Number of core BBCodes define('NUM_CORE_BBCODES', 12); +// Magic url types +define('MAGIC_URL_EMAIL', 1); +define('MAGIC_URL_FULL', 2); +define('MAGIC_URL_LOCAL', 3); +define('MAGIC_URL_WWW', 4); + // Profile Field Types define('FIELD_INT', 1); define('FIELD_STRING', 2); |