]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-optimize.php
A lot double-quotes rewritten to single-quotes, some redirect URLs fixed
[mailer.git] / inc / modules / admin / what-optimize.php
index 062937607b8838638816b0a25f30c933c00f86d6..46a4a8c87b6b098183769e2c03260c83afd208d3 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Datenbank optimieren und reparieren              *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $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 - 2008 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
 
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+ADD_DESCR('admin', __FILE__);
 
 // Optimize and repair database and return the result as a multi-dimensional array
 $DATA = REPAIR_OPTIMIZE_DB();
 
 // Output rows
-$SW = 2; $gain_tabs = 0; $OUT = "";
+$SW = 2; $gain_tabs = 0; $OUT = '';
 foreach ($DATA['tables'] as $row_array)
 {
        // Init variables
-       $B1 = ""; $B2 = "";
+       $B1 = ''; $B2 = '';
 
        // Fixes a bug which causes a parser error on eval'd code
        if (empty($row_array[1])) $row_array[1] = "NONE";
@@ -82,7 +87,7 @@ foreach ($DATA['tables'] as $row_array)
        $OUT .= LOAD_TEMPLATE("admin_optimize_row", true, $content);
        $SW = 3 - $SW;
 }
-define('__TABLE_ROWS', $OUT);
+define('__ROWS', $OUT);
 
 // Prepare data for the template
 define('__TOTAL_TABS'     , $DATA['total_tabs']);