-
Bug
-
Resolution: Fixed
-
3.0.x
-
None
-
PHP Environment:
Database:
can_load_dll() is declared in function_install.php which is not included by default.
Suggestion:
function is_available() { global $phpbb_root_path, $phpEx; if (@extension_loaded('gd')) { return true; } if (!function_exists('can_load_dll')) { include($phpbb_root_path . 'includes/functions_install.' . $phpEx); } return can_load_dll('gd'); }
|

