Index: trunk/phase3/includes/installer/Installer.php |
— | — | @@ -592,7 +592,6 @@ |
593 | 593 | global $wgLang; |
594 | 594 | |
595 | 595 | $compiledDBs = array(); |
596 | | - $goodNames = array(); |
597 | 596 | $allNames = array(); |
598 | 597 | |
599 | 598 | foreach ( self::getDBTypes() as $name ) { |
— | — | @@ -601,9 +600,7 @@ |
602 | 601 | |
603 | 602 | if ( $db->isCompiled() ) { |
604 | 603 | $compiledDBs[] = $name; |
605 | | - $goodNames[] = $readableName; |
606 | 604 | } |
607 | | - |
608 | 605 | $allNames[] = $readableName; |
609 | 606 | } |
610 | 607 | |