]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-updates.php
Several more constants rewritten to getConfig()
[mailer.git] / inc / modules / admin / what-updates.php
index 835ede7ef24f6e9edd2c31f79fc9c9562b321a38..14aba0e9a7fea033c5f069a2369dc758773118c7 100644 (file)
@@ -38,7 +38,7 @@
 
 // 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);
 }
 
@@ -46,14 +46,14 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
 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])) {
@@ -88,7 +88,7 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($
                        'ctime' => array()
                );
 
-               if (($response[3] != "[EOF]") && ($ONLINE['version'] == constant('FULL_VERSION'))) {
+               if (($response[3] != "[EOF]") && ($ONLINE['version'] == getConfig('FULL_VERSION'))) {
                        // We have found new patches (newer than FULL_VERSION)
                        $max = str_replace("\n", '', $response[count($response) - 2]); $totalSize = 0;
 
@@ -104,8 +104,8 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($
                                        $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
+                                       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
                                        }
 
@@ -129,14 +129,14 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($
 if (empty($ONLINE['version'])) {
        // Disconnected?
        LOAD_TEMPLATE('admin_settings_saved', false, "<div class=\"admin_failed\">{--ADMIN_CANNOT_CHECK_VERSION--} (".$ONLINE['code'].")</div>");
-} elseif (($ONLINE['version'] != constant('FULL_VERSION')) || ($ONLINE['revision'] != constant('CURR_SVN_REVISION'))) {
+} elseif (($ONLINE['version'] != getConfig('FULL_VERSION')) || ($ONLINE['revision'] != getConfig('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");
+       LOAD_TEMPLATE('admin_update_download');
 } else {
        // You have the latest version!
        LOAD_TEMPLATE('admin_settings_saved', false, getMessage('NO_UPDATES_AVAILABLE'));