diff options
author | Brion Vibber <brion@pobox.com> | 2009-09-01 20:04:36 -0300 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-09-13 21:53:30 -0400 |
commit | fe9473ac7810d317e001a0fec19cbacaafc0c909 (patch) | |
tree | 665ceaec4aa1d19b4ca91c2b59bda7d78f9db939 /extlib/Auth/OpenID | |
parent | 4a19c292fb444dca840591a5ccec960d63ab57b8 (diff) |
Check that 'dl' function is available and usable before trying to call it with error suppression; if it's disabled or unavailable we end up with mysterious failures during installation or loading of libraries.
Fixed for StatusNet installer as well as some external libraries that should be fixed upstream if they haven't already been:
* PEAR
* Auth/OpenID
* Auth/Yadis
Diffstat (limited to 'extlib/Auth/OpenID')
-rw-r--r-- | extlib/Auth/OpenID/BigMath.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extlib/Auth/OpenID/BigMath.php b/extlib/Auth/OpenID/BigMath.php index 45104947d..b5fc627a0 100644 --- a/extlib/Auth/OpenID/BigMath.php +++ b/extlib/Auth/OpenID/BigMath.php @@ -376,7 +376,7 @@ function Auth_OpenID_detectMathLibrary($exts) // Try to load dynamic modules. if (!$loaded) { foreach ($extension['modules'] as $module) { - if (@dl($module . "." . PHP_SHLIB_SUFFIX)) { + if (function_exists('dl') && ini_get('enable_dl') && !ini_get('safe_mode') && @dl($module . "." . PHP_SHLIB_SUFFIX)) { $loaded = true; break; } |