aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/style.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-04-11 14:14:23 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-04-11 14:14:23 +0000
commitc1c3b9f9124b42dd37b5d1da582e23b927cbee44 (patch)
tree7ba6bd9dff5e1982e01a9e1e4062c0dd1c5e97b2 /phpBB/style.php
parent5a13f125a61601f2e47b32a4d94ef9c1e0b9e3db (diff)
downloadforums-c1c3b9f9124b42dd37b5d1da582e23b927cbee44.tar
forums-c1c3b9f9124b42dd37b5d1da582e23b927cbee44.tar.gz
forums-c1c3b9f9124b42dd37b5d1da582e23b927cbee44.tar.bz2
forums-c1c3b9f9124b42dd37b5d1da582e23b927cbee44.tar.xz
forums-c1c3b9f9124b42dd37b5d1da582e23b927cbee44.zip
fixing two potential problems
- blank style - check for correct role assignment within auth.php (should not happen, but seems like some users are not able to persist from manually messing with the db) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8502 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/style.php')
-rw-r--r--phpBB/style.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/phpBB/style.php b/phpBB/style.php
index 9d38128356..599434d087 100644
--- a/phpBB/style.php
+++ b/phpBB/style.php
@@ -20,7 +20,7 @@ error_reporting(E_ALL ^ E_NOTICE);
require($phpbb_root_path . 'config.' . $phpEx);
-if (!defined('PHPBB_INSTALLED') || empty($dbms) || !isset($dbhost) || !isset($dbpasswd) || empty($dbuser))
+if (!defined('PHPBB_INSTALLED') || empty($dbms) || empty($acm_type))
{
exit;
}
@@ -57,11 +57,6 @@ if (strspn($sid, 'abcdefABCDEF0123456789') !== strlen($sid))
// server a little
if ($id)
{
- if (empty($acm_type) || empty($dbms))
- {
- die('Hacking attempt');
- }
-
// Include files
require($phpbb_root_path . 'includes/acm/acm_' . $acm_type . '.' . $phpEx);
require($phpbb_root_path . 'includes/cache.' . $phpEx);