X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-updates.php;h=de2c0a2dcd496f5ca0d9dd9344cec34759ad8d61;hp=2c666437b1bf2ac47fe780b182f5210ab7327102;hb=f928ad2bed60fa256d0641eaf6d2c027a2944688;hpb=f03cb5d87e69bb2efc885b5c5f5f3026b24c06f6 diff --git a/inc/modules/admin/what-updates.php b/inc/modules/admin/what-updates.php index 2c666437b1..de2c0a2dcd 100644 --- a/inc/modules/admin/what-updates.php +++ b/inc/modules/admin/what-updates.php @@ -38,22 +38,22 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // Add description as navigation point -ADD_DESCR("admin", __FILE__); +ADD_DESCR('admin', __FILE__); // Init array -$ONLINE['code'] = "???"; +$ONLINE['code'] = '???'; // Get response from our server in an array -$response = GET_URL("check-updates3.php"); +$response = sendGetRequest('check-updates3.php'); if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($response[3])) { // Error! - $response = array("", "", ""); + $response = array('', '', ''); } else { // Analyse header for response code if (eregi("200 OK", $response[0])) { @@ -76,9 +76,9 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($ // Which is the latest version on server? $ONLINE = array( - 'version' => str_replace("\n", "", $response[0]), - 'changed' => str_replace("\n", "", $response[1]), - 'revision' => str_replace("\n", "", $response[2]), + 'version' => str_replace("\n", '', $response[0]), + 'changed' => str_replace("\n", '', $response[1]), + 'revision' => str_replace("\n", '', $response[2]), ); // Array for available patches @@ -90,23 +90,23 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($ if (($response[3] != "[EOF]") && ($ONLINE['version'] == constant('FULL_VERSION'))) { // We have found new patches (newer than FULL_VERSION) - $max = str_replace("\n", "", $response[count($response) - 2]); $totalSize = 0; + $max = str_replace("\n", '', $response[count($response) - 2]); $totalSize = 0; // Maximum of available pacthes extracted (above). Now we can get all informations for ($idx = 0; $idx < $max; $idx++) { // List only newer patches - $TEST = substr(str_replace("\n", "", $response[$idx * 5 + 2]), 0, strlen(getConfig('patch_level'))); + $TEST = substr(str_replace("\n", '', $response[$idx * 5 + 2]), 0, strlen(getConfig('patch_level'))); // I have removed the addional test for the stored timemark in database or you cannot find // new updates on my server when you haven't installed it before I upload a patch... :-( if (bigintval($TEST) > getConfig(('patch_level'))) { // Copy every data from the response array - $PATCHES['fname'][] = str_replace("\n", "", $response[$idx * 5 + 2]); - $PATCHES['fsize'][] = str_replace("\n", "", $response[$idx * 5 + 3]); - $PATCHES['ctime'][] = str_replace("\n", "", $response[$idx * 5 + 4]); - switch (GET_LANGUAGE()) { - case "de": $PATCHES['descr'][] = str_replace("\n", "", $response[$idx * 5 + 5]); break; // Load german description - default : $PATCHES['descr'][] = str_replace("\n", "", $response[$idx * 5 + 6]); break; // Load english description as default + $PATCHES['fname'][] = str_replace("\n", '', $response[$idx * 5 + 2]); + $PATCHES['fsize'][] = str_replace("\n", '', $response[$idx * 5 + 3]); + $PATCHES['ctime'][] = str_replace("\n", '', $response[$idx * 5 + 4]); + switch (getLanguage()) { + case 'de': $PATCHES['descr'][] = str_replace("\n", '', $response[$idx * 5 + 5]); break; // Load german description + default : $PATCHES['descr'][] = str_replace("\n", '', $response[$idx * 5 + 6]); break; // Load english description as default } // Add patch's size to total @@ -128,18 +128,18 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($ // Is a newer version available? if (empty($ONLINE['version'])) { // Disconnected? - LOAD_TEMPLATE("admin_settings_saved", false, "
{--ADMIN_CANNOT_CHECK_VERSION--} (".$ONLINE['code'].")
"); + LOAD_TEMPLATE('admin_settings_saved', false, "
{--ADMIN_CANNOT_CHECK_VERSION--} (".$ONLINE['code'].")
"); } elseif (($ONLINE['version'] != constant('FULL_VERSION')) || ($ONLINE['revision'] != constant('CURR_SVN_REVISION'))) { // New full-version available (all previous released patches are included in this version!) define('__ONLINE_VERSION', $ONLINE['version']); - define('__ONLINE_CHANGE' , MAKE_DATETIME($ONLINE['changed'], "2")); + define('__ONLINE_CHANGE' , generateDateTime($ONLINE['changed'], '2')); define('__ONLINE_REVISION', $ONLINE['revision']); // Load template LOAD_TEMPLATE("admin_update_download"); } else { // You have the latest version! - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('NO_UPDATES_AVAILABLE')); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('NO_UPDATES_AVAILABLE')); } //