X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-optimize.php;h=571df6957cc8b42f97dab9e89ab9f2156c781da3;hb=6fb7e6d43cd1abb525ab3ac32c40dab995e709b2;hp=ff266c741ca34543d5c1401f878e1c7d019f0424;hpb=c3b4eaf29946349ff058691db2dcb615a5379bb2;p=mailer.git diff --git a/inc/modules/admin/what-optimize.php b/inc/modules/admin/what-optimize.php index ff266c741c..571df6957c 100644 --- a/inc/modules/admin/what-optimize.php +++ b/inc/modules/admin/what-optimize.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -44,11 +44,11 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { addYouAreHereLink('admin', __FILE__); // Optimize and repair database and return the result as a multi-dimensional array -$DATA = repairOptimizeDatabase(); +$content = repairOptimizeDatabase(); // Output rows $gain_tabs = '0'; $OUT = ''; -foreach ($DATA['tables'] as $row_array) { +foreach ($content['tables'] as $row_array) { // Init variables $B1 = ''; $B2 = ''; @@ -68,7 +68,7 @@ foreach ($DATA['tables'] as $row_array) { } // Prepare data for the row template - $content = array( + $row = array( 'b1' => $B1, 'b2' => $B2, 'tpl' => $row_array[0], @@ -79,12 +79,9 @@ foreach ($DATA['tables'] as $row_array) { ); // Load row template and switch color - $OUT .= loadTemplate('admin_optimize_row', true, $content); + $OUT .= loadTemplate('admin_optimize_row', true, $row); } // END - foreach -// Transfer main data -$content = $DATA; - // Remember rows $content['rows'] = $OUT;