aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2009-12-04 11:50:03 +0000
committerAndreas Fischer <bantu@phpbb.com>2009-12-04 11:50:03 +0000
commita5c9a2f36e569b88d0d9867f955eafc8e0606560 (patch)
tree3b8b9608af51adffa83db5256ee29a76d2faf440 /phpBB/common.php
parent57ddd53d592a381ab933b19bca84f78d9405bb8f (diff)
downloadforums-a5c9a2f36e569b88d0d9867f955eafc8e0606560.tar
forums-a5c9a2f36e569b88d0d9867f955eafc8e0606560.tar.gz
forums-a5c9a2f36e569b88d0d9867f955eafc8e0606560.tar.bz2
forums-a5c9a2f36e569b88d0d9867f955eafc8e0606560.tar.xz
forums-a5c9a2f36e569b88d0d9867f955eafc8e0606560.zip
Since dl() is deprecated and disabled by default in PHP 5.3, calling it will result in a fatal error for an undefined function and because of the error suppression in a blank page. Checking if dl() exists should allow most boards to continue right away. - Bug #54665
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10298 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index c4a3160102..087eaeef83 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -172,7 +172,8 @@ if (defined('DEBUG_EXTRA'))
}
// Load Extensions
-if (!empty($load_extensions))
+// dl() is deprecated and disabled by default as of PHP 5.3.
+if (!empty($load_extensions) && function_exists('dl'))
{
$load_extensions = explode(',', $load_extensions);