diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2008-09-04 14:06:43 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-09-04 14:06:43 +0000 |
| commit | 63e2f5cf141f067e3656a65c009a62f7a8e32aef (patch) | |
| tree | a77ccc18162b9113c18bdcffc178602e17671fd8 /phpBB/includes/constants.php | |
| parent | 4658e3f82877f13e6f667eac9631b2d662fbefd7 (diff) | |
| download | forums-63e2f5cf141f067e3656a65c009a62f7a8e32aef.tar forums-63e2f5cf141f067e3656a65c009a62f7a8e32aef.tar.gz forums-63e2f5cf141f067e3656a65c009a62f7a8e32aef.tar.bz2 forums-63e2f5cf141f067e3656a65c009a62f7a8e32aef.tar.xz forums-63e2f5cf141f067e3656a65c009a62f7a8e32aef.zip | |
add phpbb version number to constants
git-svn-id: file:///svn/phpbb/trunk@8818 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/constants.php')
| -rw-r--r-- | phpBB/includes/constants.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 1f27573ae4..e4221db8bb 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -24,6 +24,9 @@ if (!defined('IN_PHPBB')) * PHPBB_ADMIN_PATH */ +// phpBB Version +define('PHPBB_VERSION', '3.1.0-dev'); + // QA-related // define('PHPBB_QA', 1); @@ -178,8 +181,8 @@ define('REFERER_VALIDATE_PATH', 2); // phpbb_chmod() permissions @define('CHMOD_ALL', 7); -define('CHMOD_READ', 4); -define('CHMOD_WRITE', 2); +@define('CHMOD_READ', 4); +@define('CHMOD_WRITE', 2); @define('CHMOD_EXECUTE', 1); // Additional constants |
