follow up r113862 . changed public function name extensionTableExists to tableExists
authorThomas Gries <wikinaut@users.mediawiki.org>
Sat, 17 Mar 2012 08:22:58 +0000 (08:22 +0000)
committerThomas Gries <wikinaut@users.mediawiki.org>
Sat, 17 Mar 2012 08:22:58 +0000 (08:22 +0000)
includes/installer/DatabaseUpdater.php

index 0aa286d..6ff0af9 100644 (file)
@@ -231,7 +231,7 @@ abstract class DatabaseUpdater {
         *
         * @param $tableName string
         */
-       public function extensionTableExists( $tableName ) {
+       public function tableExists( $tableName ) {
                return ( $this->db->tableExists( $tableName, __METHOD__ ) );
        }