diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2008-04-02 08:51:21 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-04-02 08:51:21 +0000 |
commit | d85b3ae528d8417f07af5bac571998ce3564d10f (patch) | |
tree | 8e4cfb601dedea53b6bc1078a7a377db1612da86 /phpBB/style.php | |
parent | daa2afbe3681c5413daa6e6c9c069f90efd0baf9 (diff) | |
download | forums-d85b3ae528d8417f07af5bac571998ce3564d10f.tar forums-d85b3ae528d8417f07af5bac571998ce3564d10f.tar.gz forums-d85b3ae528d8417f07af5bac571998ce3564d10f.tar.bz2 forums-d85b3ae528d8417f07af5bac571998ce3564d10f.tar.xz forums-d85b3ae528d8417f07af5bac571998ce3564d10f.zip |
#s24575
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8486 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/style.php')
-rw-r--r-- | phpBB/style.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/style.php b/phpBB/style.php index 469e2b7727..9d38128356 100644 --- a/phpBB/style.php +++ b/phpBB/style.php @@ -20,6 +20,11 @@ error_reporting(E_ALL ^ E_NOTICE); require($phpbb_root_path . 'config.' . $phpEx); +if (!defined('PHPBB_INSTALLED') || empty($dbms) || !isset($dbhost) || !isset($dbpasswd) || empty($dbuser)) +{ + exit; +} + if (version_compare(PHP_VERSION, '6.0.0-dev', '<')) { set_magic_quotes_runtime(0); |