X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-updates.php;h=cd689af7ad6981b0f5acddd2ca46ac878f1ca524;hb=d6834211baacaa54b282898fe54dc8c1511f046b;hp=aacab360913fc171609b04300adb617d413381ee;hpb=44c5b87eca387e02d33b4c0e728920aeca2a9840;p=mailer.git diff --git a/inc/modules/admin/what-updates.php b/inc/modules/admin/what-updates.php index aacab36091..cd689af7ad 100644 --- a/inc/modules/admin/what-updates.php +++ b/inc/modules/admin/what-updates.php @@ -32,13 +32,13 @@ ************************************************************************/ // Some security stuff... -if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN())) { +if ((!defined('__SECURITY')) || (!IS_ADMIN())) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); // Init array $ONLINE['code'] = "???"; @@ -85,7 +85,7 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($ if (($response[3] != "[EOF]") && ($ONLINE['version'] == 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[sizeof($response) - 2]); $TOTAL_SIZE = 0; // Maximum of available pacthes extracted (above). Now we can get all informations for ($idx = 0; $idx < $max; $idx++) { @@ -132,38 +132,6 @@ if (empty($ONLINE['version'])) { // Load template LOAD_TEMPLATE("admin_update_download"); -/* - * DEACTIVATED ON 09/11/2008,02:47 AM - * -} elseif (sizeof($PATCHES['fname']) > 0) { - // Some patches are available - $OUT = ""; $SW = "2"; - foreach ($PATCHES['fname'] as $idx => $file) { - $SIZE = TRANSLATE_COMMA(round($PATCHES['fsize'][$idx]/102.4)/10); - $content = array( - 'sw' => $SW, - 'patch_url' => SERVER_URL."/patches/".$file, - 'patch_title' => str_replace("_", " ", str_replace(".zip", "", $file)), - 'patch_ctime' => MAKE_DATETIME($PATCHES['ctime'][$idx], "2"), - 'patch_size' => $SIZE, - 'patch_desc' => COMPILE_CODE($PATCHES['descr'][$idx]), - ); - // Evaluate descrition code - $eval = "\$content['patch_desc'] = \"".$content['patch_desc']."\";"; - eval($eval); - - // Load template, switch color and count total size up - $OUT .= LOAD_TEMPLATE("admin_patches_row", true, $content); - $SW = 3 - $SW; - } - define('__PATCH_ROWS', $OUT); - - // Total size - define('__TOTAL_SIZE', TRANSLATE_COMMA($TOTAL_SIZE / 1024)); - - // Load main template - LOAD_TEMPLATE("admin_patches"); -*/ } else { // You have the latest version! LOAD_TEMPLATE("admin_settings_saved", false, NO_UPDATES_AVAILABLE);