From 48d39f1b45c79dcd97c187428104b6bde10e9914 Mon Sep 17 00:00:00 2001 From: phpnut Date: Sun, 13 May 2007 14:52:17 +0000 Subject: [PATCH] Merging [5070] into DboMysqli and also adding changes to 1.1.x.x versions git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5072 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/libs/model/datasources/dbo/dbo_mysqli.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/libs/model/datasources/dbo/dbo_mysqli.php b/cake/libs/model/datasources/dbo/dbo_mysqli.php index 68ae6bc50..368eb7c5d 100644 --- a/cake/libs/model/datasources/dbo/dbo_mysqli.php +++ b/cake/libs/model/datasources/dbo/dbo_mysqli.php @@ -131,7 +131,7 @@ class DboMysqli extends DboSource { if ($cache != null) { return $cache; } - $result = $this->_execute('SHOW TABLES FROM ' . $this->config['database'] . ';'); + $result = $this->_execute('SHOW TABLES FROM ' . $this->name($this->config['database']) . ';'); if (!$result) { return array();