]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-optimize.php
Project continued:
[mailer.git] / inc / modules / admin / what-optimize.php
index 6910cacb3e5cf82af36e21d0c97e2935436f1db2..575825702cc0f5decbbc79c2ce2c48ef27d0997e 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * 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 *
@@ -56,7 +56,7 @@ foreach ($content['tables'] as $row_array) {
        if (empty($row_array[1])) $row_array[1] = 'NONE';
 
        // Get repair/optimization status
-       $repairStatus = '{--ADMIN_OPTIMIZE_STATUS_' . str_replace('__', '_', str_replace(',', '', str_replace('+', '', str_replace("'", '', str_replace(' ', '_', strtoupper($row_array[1])))))) . '--}';
+       $repairStatus = '{--ADMIN_OPTIMIZE_STATUS_' . str_replace(array('__', ',', '+', chr(39), ' '), array('_', '', '', '', '_'), strtoupper($row_array[1])) . '--}';
        $optimizeStatus = '{--ADMIN_OPTIMIZE_STATUS_UNSUPPORTED--}';
 
        if ($row_array[4] > 0) {
@@ -79,7 +79,7 @@ foreach ($content['tables'] as $row_array) {
        );
 
        // Load row template and switch color
-       $OUT .= loadTemplate('admin_optimize_row', true, $row);
+       $OUT .= loadTemplate('admin_optimize_row', TRUE, $row);
 } // END - foreach
 
 // Remember rows
@@ -89,7 +89,7 @@ $content['rows'] = $OUT;
 $content['now_optimized'] = $gain_tabs;
 
 // Load main template
-loadTemplate('admin_optimize', false, $content);
+loadTemplate('admin_optimize', FALSE, $content);
 
 // [EOF]
 ?>