X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_check.php;h=993ecc443ba86f25165b39aa9aad92ae67dc6010;hb=1355d2c0b29510dbd407f9cde9f41a5ac02d01fa;hp=eaaed34d57739f7f0a8e0e09abb77662d5e54876;hpb=aa63aed07428a99ea09002c8d072990677700080;p=mailer.git diff --git a/inc/modules/admin/what-theme_check.php b/inc/modules/admin/what-theme_check.php index eaaed34d57..993ecc443b 100644 --- a/inc/modules/admin/what-theme_check.php +++ b/inc/modules/admin/what-theme_check.php @@ -50,7 +50,7 @@ $mode = "overview"; $SEL = 0; // Get response from our server -$response = GET_URL("check-themes.php"); +$response = sendGetRequest('check-themes.php'); // Are theme_check found? if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) { @@ -79,7 +79,7 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) { $cver = THEME_GET_VERSION($name); // Is the theme already installed or not? - if (($ver != $cver) && ($cver != "?") && ($cver != "!")) { + if (($ver != $cver) && ($cver != '?') && ($cver != '!')) { // No, it isn't. So let's add this one! $THEMES['fname'][] = $name; $THEMES['fsize'][] = $response[$idx + 1]; @@ -95,7 +95,7 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) { // Trim every data line foreach ($LANG_DUMMY as $k => $v) { $v = trim($v); - if (substr($v, 3) == "") $v = '---'; + if (substr($v, 3) == '') $v = '---'; $LANG_DUMMY[$k] = $v; if ($v == "xx:xx") break; $LANG[] = $v; @@ -103,7 +103,7 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) { // If language is found stop searching on matching line foreach($LANG as $search) { - if (substr($search, 0, 3) == (GET_LANGUAGE().":")) { $INFO = substr($search, 3); break; } + if (substr($search, 0, 3) == (getLanguage().':')) { $INFO = substr($search, 3); break; } } // END - foreach // Add informations to array @@ -127,8 +127,8 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) { $OUT .= " ".($idx + 1).". ".$name." - ".MAKE_DATETIME($THEMES['fctime'][$idx], "2")." - ".TRANSLATE_COMMA(round($THEMES['fsize'][$idx] / 1.024) / 1000)." ".KBYTES." + ".generateDateTime($THEMES['fctime'][$idx], '2')." + ".translateComma(round($THEMES['fsize'][$idx] / 1.024) / 1000)." ".KBYTES." ".$THEMES['ver'][$idx]." (".$THEMES['cver'][$idx].") @@ -141,7 +141,7 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) { $SW = 3 - $SW; } define('__THEMES_ROWS', $OUT); - define('__TKBYTES_VALUE', TRANSLATE_COMMA(round($TSIZE / 1.024) / 1000)); + define('__TKBYTES_VALUE', translateComma(round($TSIZE / 1.024) / 1000)); define('__TTHEME_VALUE', count($THEMES['fname'])); // Load template