]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-updates.php
Fix for missing language string and variable renamed to better naming convention
[mailer.git] / inc / modules / admin / what-updates.php
index 5d702805a0132fdf11f3230ff0c36732dc1ce26e..a70cb6f57b6621a748ee4347b219851a627f50c1 100644 (file)
@@ -41,7 +41,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 } // END - if
 
 // Add description as navigation point
-addMenuDescription('admin', __FILE__);
+addYouAreHereLink('admin', __FILE__);
 
 // Init array
 $ONLINE['code'] = '???';
@@ -57,13 +57,13 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($
        if (isInStringIgnoreCase('200 OK', $response[0])) {
                // Found, kill header
                $pos = '0';
-               foreach($response as $k => $v) {
+               foreach ($response as $k => $v) {
                        $v = trim($v);
                        if (empty($v)) {
                                // Header ends here (+1)
                                $pos = $k + 1; break;
-                       }
-               }
+                       } // END - if
+               } // END - foreach
 
                $response2 = array();
                for($i = $pos; $i < count($response); $i++) {
@@ -89,13 +89,13 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($
 if (empty($ONLINE['version'])) {
        // Disconnected?
        loadTemplate('admin_settings_unsaved', false, '{--ADMIN_CANNOT_CHECK_VERSION--} (' . $ONLINE['code'] . ')');
-} elseif (($ONLINE['version'] != getFullVersion()) || ($ONLINE['revision'] > getCurrSvnRevision())) {
+} elseif (($ONLINE['version'] != getFullVersion()) || ($ONLINE['revision'] > getCurrentRepositoryRevision())) {
        // New full-version available (all previous released patches are included in this version!)
        $ONLINE['changed'] = generateDateTime($ONLINE['changed'], 2);
 
        // Load template
        loadTemplate('admin_update_download', false, $ONLINE);
-} elseif ($ONLINE['revision'] < getCurrSvnRevision()) {
+} elseif ($ONLINE['revision'] < getCurrentRepositoryRevision()) {
        // Installed revision is newer than on server
        loadTemplate('admin_settings_saved', false, '{--ADMIN_LOCAL_REVISION_IS_NEWER_THAN_UPDATE--}');
 } else {