summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2011-06-01 07:46:00 +0000
committerctrlaltca@gmail.com <>2011-06-01 07:46:00 +0000
commite38ecc97ba8c29bf7859021616feee2f4962f404 (patch)
treea38d2f8aead434fdb5b03b00d2c34b0e7f4f934b
parent6e5fac00670d3d61fa4cd797b23d431ee2981d38 (diff)
fix for #327
-rw-r--r--framework/Caching/TDbCache.php2
-rw-r--r--framework/Util/TLogRouter.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/Caching/TDbCache.php b/framework/Caching/TDbCache.php
index 0e013c79..6dfd2897 100644
--- a/framework/Caching/TDbCache.php
+++ b/framework/Caching/TDbCache.php
@@ -195,7 +195,7 @@ class TDbCache extends TCache
Prado::trace(($force ? 'Force initializing: ' : 'Initializing: ') . $this -> id . ', ' . $this->_cacheTable, 'System.Caching.TDbCache');
- $sql='SELECT 1 FROM '.$this->_cacheTable.' WHERE 0';
+ $sql='SELECT 1 FROM '.$this->_cacheTable.' WHERE 0=1';
$db->createCommand($sql)->queryScalar();
$this -> _createCheck = true;
diff --git a/framework/Util/TLogRouter.php b/framework/Util/TLogRouter.php
index e060a85e..725cda41 100644
--- a/framework/Util/TLogRouter.php
+++ b/framework/Util/TLogRouter.php
@@ -861,7 +861,7 @@ class TDbLogRoute extends TLogRoute
$db=$this->getDbConnection();
$db->setActive(true);
- $sql='SELECT * FROM '.$this->_logTable.' WHERE 0';
+ $sql='SELECT * FROM '.$this->_logTable.' WHERE 0=1';
try
{
$db->createCommand($sql)->query()->close();