X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_check.php;h=c538c9fbd0291e96a800db681e95d8942b5abe67;hp=83cf01f67b35c6e5ddb4546b5c305792b35183a1;hb=4001187f22197f55e5a1f211fc8defcc180f7c32;hpb=59bd8a9805c51c895a92cc12825f4cbdfd792597 diff --git a/inc/modules/admin/what-theme_check.php b/inc/modules/admin/what-theme_check.php index 83cf01f67b..c538c9fbd0 100644 --- a/inc/modules/admin/what-theme_check.php +++ b/inc/modules/admin/what-theme_check.php @@ -48,7 +48,7 @@ $SEL = 0; $response = GET_URL("check-themes.php"); // Are theme_check found? -if (($response[sizeof($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) { +if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) { // Ok, mark found and create the array $THEMES = array( 'fname' => array(), // File names @@ -60,7 +60,7 @@ if (($response[sizeof($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) ); // Get count of theme_check for validation - $count = trim($response[sizeof($response) - 2]); + $count = trim($response[count($response) - 2]); foreach ($response as $idx => $value) { $value = str_replace("\n", "", $value); $ver = ""; @@ -108,12 +108,12 @@ if (($response[sizeof($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) } // END - foreach // Ok, themes are on our server but maybe you have already installed them? - if (sizeof($THEMES['fname']) > 0) { + if (count($THEMES['fname']) > 0) { // Sort array (I missed ver and cver here) array_pk_sort($THEMES, array("cver", "fname"), 0, 1); // Extensions where found which are not downloaded and installed - $SW = 2; $OUT = ""; $TSIZE = 0; + $OUT = ""; $SW = 2; $TSIZE = 0; foreach ($THEMES['fname'] as $idx => $name) { // Generate download link $LINK = SERVER_URL."/themes/theme-".$name.".zip"; @@ -137,7 +137,7 @@ if (($response[sizeof($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) } define('__THEMES_ROWS', $OUT); define('__TKBYTES_VALUE', TRANSLATE_COMMA(round($TSIZE / 1.024) / 1000)); - define('__TTHEME_VALUE', sizeof($THEMES['fname'])); + define('__TTHEME_VALUE', count($THEMES['fname'])); // Load template LOAD_TEMPLATE("admin_theme_list");