diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-12-15 10:05:00 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-15 10:05:00 +0000 |
commit | 8023325429aae98390be9e2effd3910084b68575 (patch) | |
tree | 214c8b2b2d87dc4db917695f7ca02ce6fcedfc59 | |
parent | 3131662c195bd3e2400f2499a66e084a32c90c71 (diff) |
Fix Database::instance()->list_tables()
Upstream ticket:
http://dev.kohanaphp.com/ticket/967
-rw-r--r-- | kohana/libraries/Database.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kohana/libraries/Database.php b/kohana/libraries/Database.php index 3705bbd8..2c73f080 100644 --- a/kohana/libraries/Database.php +++ b/kohana/libraries/Database.php @@ -1096,7 +1096,7 @@ class Database_Core { $this->reset_select(); - return $this->driver->list_tables(); + return $this->driver->list_tables($this); } /** |