Extension 'yoomedia' now alpha status, some rewrites
[mailer.git] / inc / libs / optimize_functions.php
index cefbd46fa43f3eb5bac8f5f662cce87ab056b11d..26dcdbc71896603513aa377f0c996589afc83208 100644 (file)
@@ -42,15 +42,15 @@ if (!defined('__SECURITY')) {
 //
 function REPAIR_OPTIMIZE_DB()
 {
-       global $MySQL;
        $ret = array();
        $tot_data = 0; $tabs = 0; $opts = 0;
        $tot_idx = 0; $total_gain = 0;
        $tot_all = 0;
-       $result = @SQL_QUERY("SHOW TABLE STATUS FROM ".$MySQL['dbase'], __FILE__, __LINE__);
+       $result = @SQL_QUERY("SHOW TABLE STATUS FROM ".__DB_NAME, __FILE__, __LINE__);
        $tabs = @SQL_NUMROWS($result);
        $ret['total_size'] = 0;
        $ret['total_tabs'] = $tabs;
+       $ret['tables'] = array();
        if ($tabs > 0)
        {
                while ($row = SQL_FETCHARRAY($result))