diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-01-04 07:51:04 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-01-04 07:51:04 +0000 |
commit | d23a07dc7dc4248180d451bce584a47f7defd737 (patch) | |
tree | b7c3197adfe26378bb4c62a318755c63793f236c /phpBB/common.php | |
parent | 17dc26e19b1738ccb3a2c8bb4b3757168cf9eabd (diff) | |
download | forums-d23a07dc7dc4248180d451bce584a47f7defd737.tar forums-d23a07dc7dc4248180d451bce584a47f7defd737.tar.gz forums-d23a07dc7dc4248180d451bce584a47f7defd737.tar.bz2 forums-d23a07dc7dc4248180d451bce584a47f7defd737.tar.xz forums-d23a07dc7dc4248180d451bce584a47f7defd737.zip |
- sperate permissions from sessions
- added some comments to the auth class for better understanding
- revised some permission functions
- added option to negate permission check by prefixing option with a ! (for example checking for !f_read returns true if user is not able to read forum)
- used the new option for testing in ucp front
git-svn-id: file:///svn/phpbb/trunk@5423 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r-- | phpBB/common.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index c232b07718..6822d8f72a 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -6,6 +6,7 @@ * @copyright (c) 2005 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License * +* Minimum Requirement: PHP 4.3.3 */ // Remove the following line to enable this software, be sure you note what it @@ -77,6 +78,7 @@ require($phpbb_root_path . 'includes/acm/acm_main.' . $phpEx); require($phpbb_root_path . 'includes/db/' . $dbms . '.' . $phpEx); require($phpbb_root_path . 'includes/template.' . $phpEx); require($phpbb_root_path . 'includes/session.' . $phpEx); +require($phpbb_root_path . 'includes/auth.' . $phpEx); require($phpbb_root_path . 'includes/functions.' . $phpEx); require($phpbb_root_path . 'includes/constants.' . $phpEx); |