X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_check.php;h=42910fe9f970b2dec095d52e09fa4ad757774634;hb=96dfdd6b8e6a56d6594c3525e5fd2a066697a6de;hp=4dd8d5b418a52b127cb747e4a5e0d5b53e27358c;hpb=1ebf518b9552f71ee95de6f4b80e6de3a27716d1;p=mailer.git diff --git a/inc/modules/admin/what-theme_check.php b/inc/modules/admin/what-theme_check.php index 4dd8d5b418..42910fe9f9 100644 --- a/inc/modules/admin/what-theme_check.php +++ b/inc/modules/admin/what-theme_check.php @@ -1,7 +1,7 @@ array(), // File names @@ -69,7 +68,7 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) { $value = str_replace("\n", '', $value); $ver = ''; // Leave loop when data is invalid or EOF? - if ((substr($value, 0, 6) == "theme-") && (substr($value, -4) == ".zip")) { + if ((substr($value, 0, 6) == 'theme-') && (substr($value, -4) == '.zip')) { // Extract name and version $name = substr($value, 6, -4); $ver = trim(substr($response[$idx + 3], 4)); @@ -117,14 +116,14 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) { array_pk_sort($themes, array('cver', 'fname'), 0, 1); // Extensions where found which are not downloaded and installed - $OUT = ''; $SW = 2; $totalSize = 0; + $OUT = ''; $SW = 2; $totalSize = '0'; foreach ($themes['fname'] as $idx => $name) { // Prepare data $content = array( 'sw' => $SW, 'index' => ($idx + 1), 'name' => $name, - 'created' => generateDateTime($themes['fctime'][$idx], '2'), + 'created' => generateDateTime($themes['fctime'][$idx], 2), 'size' => translateComma(round($themes['fsize'][$idx] / 1.024) / 1000), 'version' => $themes['ver'][$idx], 'current' => $themes['cver'][$idx],