From ebe635a827890adc533150f2ad39b0b1440a2d5c Mon Sep 17 00:00:00 2001 From: nate Date: Sat, 21 Jun 2008 13:03:25 +0000 Subject: [PATCH] Correcting syntax error in DboAdodb, fixes #4965 git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7226 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/libs/model/datasources/dbo/dbo_adodb.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/libs/model/datasources/dbo/dbo_adodb.php b/cake/libs/model/datasources/dbo/dbo_adodb.php index e42eae2c0..dd63d1ec1 100644 --- a/cake/libs/model/datasources/dbo/dbo_adodb.php +++ b/cake/libs/model/datasources/dbo/dbo_adodb.php @@ -515,7 +515,7 @@ class DboAdodb extends DboSource { * @return boolean True if the result is valid, else false */ function hasResult() { - return is_object($this->_result) && !$this->_result->EOF + return is_object($this->_result) && !$this->_result->EOF; } } ?> \ No newline at end of file