alecpl
2010-04-23 f6ee6f4dd247d25aed7589a6cb3e0192dbd1c2c4
- Fix DB Schema checking when some db_table_* options are not set


1 files modified
5 ■■■■■ changed files
installer/rcube_install.php 5 ●●●●● patch | view | raw | blame | history
installer/rcube_install.php
@@ -353,10 +353,11 @@
    
    // check list of tables
    $existing_tables = $DB->list_tables();
    foreach ($db_schema as $table => $cols) {
      if (!in_array($this->config['db_table_'.$table], $existing_tables))
      $table = !empty($this->config['db_table_'.$table]) ? $this->config['db_table_'.$table] : $table;
      if (!in_array($table, $existing_tables))
        $errors[] = "Missing table ".$table;
      // TODO: check cols and indices
    }