X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-updates.php;h=eb2237bdf214a4e039c25fce44d29fa2410dd6b5;hp=efff80d7fbd7eaa341e75277a295dd407ca90f4c;hb=fb7120ffa230b62b54895bcf95952e1cf30f8594;hpb=f9a9c09e1ae257449bfd98f8854e321efba1dc3c diff --git a/inc/modules/admin/what-updates.php b/inc/modules/admin/what-updates.php index efff80d7fb..eb2237bdf2 100644 --- a/inc/modules/admin/what-updates.php +++ b/inc/modules/admin/what-updates.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Prueft nach Updates * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -83,9 +88,9 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($ 'ctime' => array() ); - if (($response[3] != "[EOF]") && ($ONLINE['version'] == FULL_VERSION)) { + if (($response[3] != "[EOF]") && ($ONLINE['version'] == constant('FULL_VERSION'))) { // We have found new patches (newer than FULL_VERSION) - $max = str_replace("\n", "", $response[sizeof($response) - 2]); $TOTAL_SIZE = 0; + $max = str_replace("\n", "", $response[count($response) - 2]); $TOTAL_SIZE = 0; // Maximum of available pacthes extracted (above). Now we can get all informations for ($idx = 0; $idx < $max; $idx++) { @@ -94,7 +99,7 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($ // 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) > bigintval(getConfig('patch_level'))) { + 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]); @@ -123,8 +128,8 @@ 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'].")"); -} elseif (($ONLINE['version'] != FULL_VERSION) || ($ONLINE['revision'] != CURR_SVN_REVISION)) { + 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")); @@ -134,7 +139,7 @@ if (empty($ONLINE['version'])) { LOAD_TEMPLATE("admin_update_download"); } else { // You have the latest version! - LOAD_TEMPLATE("admin_settings_saved", false, NO_UPDATES_AVAILABLE); + LOAD_TEMPLATE("admin_settings_saved", false, getMessage('NO_UPDATES_AVAILABLE')); } //