X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-updates.php;h=5b5bddfacc25b1678bd3dbf34c3afa9612da6bd6;hp=16f3a6a3524d7498a3bd76b9a87c1682c08de8f2;hb=b7aada7890a3c7d1c1da4d2b36d8d7683fa61c06;hpb=d5ee31ebfc85f22fc691b8c2753c42e188c1c4ef diff --git a/inc/modules/admin/what-updates.php b/inc/modules/admin/what-updates.php index 16f3a6a352..5b5bddfacc 100644 --- a/inc/modules/admin/what-updates.php +++ b/inc/modules/admin/what-updates.php @@ -83,7 +83,7 @@ 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; @@ -94,7 +94,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]);