We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d63f18d commit ffc0f94Copy full SHA for ffc0f94
class/Common/ServerStats.php
@@ -49,7 +49,7 @@ public static function getServerStats()
49
$gdlib = \function_exists('gd_info') ? '<span style="color: #008000;">' . \constant('CO_' . $moduleDirNameUpper . '_GDON') . '</span>' : '<span style="color: #ff0000;">' . \constant('CO_' . $moduleDirNameUpper . '_GDOFF') . '</span>';
50
$html .= '<li>' . \constant('CO_' . $moduleDirNameUpper . '_GDLIBSTATUS') . $gdlib;
51
if (\function_exists('gd_info')) {
52
- if (true === ($gdlib = gd_info())) {
+ if (true == ($gdlib = gd_info())) {
53
$html .= '<li>' . \constant('CO_' . $moduleDirNameUpper . '_GDLIBVERSION') . '<b>' . $gdlib['GD Version'] . '</b>';
54
}
55
0 commit comments