Index: branches/new-installer/phase3/includes/db/SchemaBuilder.php |
— | — | @@ -411,7 +411,7 @@ |
412 | 412 | ), |
413 | 413 | ) |
414 | 414 | ); |
415 | | - $this->tablesToDelete[] = array_merge( $this->tablesToDelete, |
| 415 | + $this->tablesToDelete = array_merge( $this->tablesToDelete, |
416 | 416 | array( 'searchindex_content', 'searchindex_segdir', 'searchindex_segments' ) |
417 | 417 | ); |
418 | 418 | } |
Index: branches/new-installer/phase3/includes/installer/Installer.php |
— | — | @@ -72,10 +72,10 @@ |
73 | 73 | ); |
74 | 74 | |
75 | 75 | /** |
76 | | - * Known database types. These correspond to the class names <type>_Installer, |
| 76 | + * Known database types. These correspond to the class names <type>Installer, |
77 | 77 | * and are also MediaWiki database types valid for $wgDBtype. |
78 | 78 | * |
79 | | - * To add a new type, create a <type>_Installer class and a Database<type> |
| 79 | + * To add a new type, create a <type>Installer class and a Database<type> |
80 | 80 | * class, and add a config-type-<type> message to MessagesEn.php. |
81 | 81 | * @private |
82 | 82 | */ |