mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Disabling query caching in DboMssql::listSources(), fixes #5514
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7701 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
34c5f74300
commit
ae8a6b958a
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ class DboMssql extends DboSource {
|
||||||
if ($cache != null) {
|
if ($cache != null) {
|
||||||
return $cache;
|
return $cache;
|
||||||
}
|
}
|
||||||
$result = $this->fetchAll('SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES');
|
$result = $this->fetchAll('SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES', false);
|
||||||
|
|
||||||
if (!$result || empty($result)) {
|
if (!$result || empty($result)) {
|
||||||
return array();
|
return array();
|
||||||
|
|
Loading…
Reference in a new issue