X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-optimize.php;h=fe6872cb8dfbcf215fce5a6d19f702223f80665c;hp=48f1cdfbe72e871281f23dee4ecf349f9add1144;hb=e8ca54fe91872ab95a6ffdc4f1268bf18889021d;hpb=537df432292cb0aa63070479258e3e84b182a28b diff --git a/inc/modules/admin/what-optimize.php b/inc/modules/admin/what-optimize.php index 48f1cdfbe7..fe6872cb8d 100644 --- a/inc/modules/admin/what-optimize.php +++ b/inc/modules/admin/what-optimize.php @@ -14,8 +14,6 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009, 2010 by Mailer Developer Team * @@ -43,7 +41,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Optimize and repair database and return the result as a multi-dimensional array $DATA = repairOptimizeDatabase(); @@ -58,15 +56,15 @@ foreach ($DATA['tables'] as $row_array) { if (empty($row_array[1])) $row_array[1] = 'NONE'; // Get repair/optimization status - $repairStatus = '{--OPTIMIZE_STATUS_' . str_replace('__', '_', str_replace(',', '', str_replace('+', '', str_replace("'", '', str_replace(' ', '_', strtoupper($row_array[1])))))) . '--}'; - $optimizeStatus = '{--OPTIMIZE_STATUS_UNSUPPORTED--}'; + $repairStatus = '{--ADMIN_OPTIMIZE_STATUS_' . str_replace('__', '_', str_replace(',', '', str_replace('+', '', str_replace("'", '', str_replace(' ', '_', strtoupper($row_array[1])))))) . '--}'; + $optimizeStatus = '{--ADMIN_OPTIMIZE_STATUS_UNSUPPORTED--}'; if ($row_array[4] > 0) { - $optimizeStatus = '{--OPTIMIZE_STATUS_OPTIMIZED--}'; + $optimizeStatus = '{--ADMIN_OPTIMIZE_STATUS_OPTIMIZED--}'; $B1 = ''; $B2 = ''; $gain_tabs++; } elseif (count(explode(' ', $row_array[2])) == 0) { - $optimizeStatus = '{--OPTIMIZE_STATUS_' . strtoupper($row_array[2]) . '--}'; + $optimizeStatus = '{--ADMIN_OPTIMIZE_STATUS_' . strtoupper($row_array[2]) . '--}'; } // Prepare data for the row template