Several more constants rewritten to getConfig()
[mailer.git] / inc / modules / admin / what-updates.php
index de2c0a2dcd496f5ca0d9dd9344cec34759ad8d61..14aba0e9a7fea033c5f069a2369dc758773118c7 100644 (file)
@@ -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;
 
@@ -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' , 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'));