Zeile 12 | Zeile 12 |
---|
{ global $db, $mybb, $lang, $plugins;
|
{ global $db, $mybb, $lang, $plugins;
|
// Sorry SQLite, you don't have a decent way of checking if the table is corrupted or not. if($db->type == "sqlite")
| if(!in_array($db->type, array('mysql', 'mysqli')))
|
{ return; }
| { return; }
|
Zeile 28 | Zeile 27 |
---|
$comma = ""; $tables_list = "";
|
$comma = ""; $tables_list = "";
|
$repaired = "";
| $repaired = array();
|
$setting_done = false;
$tables = $db->list_tables($mybb->config['database']['database'], $mybb->config['database']['table_prefix']);
| $setting_done = false;
$tables = $db->list_tables($mybb->config['database']['database'], $mybb->config['database']['table_prefix']);
|