File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -283,6 +283,8 @@ function get_env_details() {
283283 $ env = array (
284284 'php_version ' => phpversion (),
285285 'php_modules ' => array (),
286+ 'gd_info ' => extension_loaded ( 'gd ' ) ? gd_info () : array (),
287+ 'imagick_info ' => extension_loaded ( 'imagick ' ) ? Imagick::queryFormats () : array (),
286288 'system_utils ' => array (),
287289 'mysql_version ' => trim ( shell_exec ( 'mysql --version ' ) ),
288290 'os_name ' => trim ( shell_exec ( 'uname -s ' ) ),
Original file line number Diff line number Diff line change 158158\$env = array(
159159 'php_version' => phpversion(),
160160 'php_modules' => array(),
161+ 'gd_info' => extension_loaded( 'gd' ) ? gd_info() : array(),
162+ 'imagick_info' => extension_loaded( 'imagick' ) ? Imagick::queryFormats() : array(),
161163 'system_utils' => array(),
162164 'mysql_version' => trim( shell_exec( 'mysql --version' ) ),
163165 'os_name' => trim( shell_exec( 'uname -s' ) ),
You can’t perform that action at this time.
0 commit comments