// Fix Db->query (property value is set)

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12751 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2012-01-27 13:39:35 +00:00
parent d514b6dc9b
commit 3fab234cd9
+2 -2
View File
@@ -303,10 +303,10 @@ abstract class DbCore
if ($sql instanceof DbQuery)
$sql = $sql->build();
$result = $this->_query($sql);
$this->result = $this->_query($sql);
if (_PS_DEBUG_SQL_)
$this->displayError($sql);
return $result;
return $this->result;
}
/**