Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: backupdb.php 5016 2010-06-12 00:24:02Z RyanGordon $
| * $Id$
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 187 | Zeile 187 |
---|
$header = "-- MyBB Database Backup\n-- Generated: {$time}\n-- -------------------------------------\n\n"; $contents = $header; foreach($mybb->input['tables'] as $table)
|
$header = "-- MyBB Database Backup\n-- Generated: {$time}\n-- -------------------------------------\n\n"; $contents = $header; foreach($mybb->input['tables'] as $table)
|
{
| { if(!$db->table_exists($db->escape_string($table))) { continue; }
|
if($mybb->input['analyzeoptimize'] == 1) { $db->optimize_table($table);
| if($mybb->input['analyzeoptimize'] == 1) { $db->optimize_table($table);
|
Zeile 342 | Zeile 346 |
---|
} $table = new Table;
|
} $table = new Table;
|
$table->construct_header($lang->table_selectiona);
| $table->construct_header($lang->table_selection);
|
$table->construct_header($lang->backup_options); $table_selects = array();
| $table->construct_header($lang->backup_options); $table_selects = array();
|