From: Gunnar Wrobel
Date: Tue, 5 Oct 2010 17:24:24 +0000 (+0200) Subject: Adapt to the method definition in Horde_Db_Adapter_Base_Schema X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=8dc735eaa147d6215573ec9f0af3661b51df4d44;p=horde.git Adapt to the method definition in Horde_Db_Adapter_Base_Schema --- diff --git a/framework/Db/lib/Horde/Db/Adapter/Mssql/Schema.php b/framework/Db/lib/Horde/Db/Adapter/Mssql/Schema.php index 611e76139..5406d5698 100644 --- a/framework/Db/lib/Horde/Db/Adapter/Mssql/Schema.php +++ b/framework/Db/lib/Horde/Db/Adapter/Mssql/Schema.php @@ -67,7 +67,7 @@ class Horde_Db_Adapter_Mssql_Schema extends Horde_Db_Adapter_Base_Schema /** */ - public function tables() + public function tables($name = null) { return 'SELECT name FROM sysobjects WHERE type = \'U\' ORDER BY name'; }