From: Thomas Gries Date: Sat, 17 Mar 2012 08:22:58 +0000 (+0000) Subject: follow up r113862 . changed public function name extensionTableExists to tableExists X-Git-Tag: 1.31.0-rc.0~24227 X-Git-Url: http://git.cyclocoop.org//%27%40script%40/%27?a=commitdiff_plain;h=c049019039163086149001b93b7e57cded0448a1;p=lhc%2Fweb%2Fwiklou.git follow up r113862 . changed public function name extensionTableExists to tableExists --- diff --git a/includes/installer/DatabaseUpdater.php b/includes/installer/DatabaseUpdater.php index 0aa286dccd..6ff0af9a49 100644 --- a/includes/installer/DatabaseUpdater.php +++ b/includes/installer/DatabaseUpdater.php @@ -231,7 +231,7 @@ abstract class DatabaseUpdater { * * @param $tableName string */ - public function extensionTableExists( $tableName ) { + public function tableExists( $tableName ) { return ( $this->db->tableExists( $tableName, __METHOD__ ) ); }