Merge "Check minimum database server version when running update.php"
[lhc/web/wiklou.git] / includes / installer / DatabaseInstaller.php
index 925d991..62acebf 100644 (file)
@@ -724,7 +724,7 @@ abstract class DatabaseInstaller {
                }
                $this->db->selectDB( $this->getVar( 'wgDBname' ) );
 
-               if ( $this->db->selectRow( 'interwiki', '*', [], __METHOD__ ) ) {
+               if ( $this->db->selectRow( 'interwiki', '1', [], __METHOD__ ) ) {
                        $status->warning( 'config-install-interwiki-exists' );
 
                        return $status;