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

This commit is contained in:
rMalie
2012-01-27 13:39:35 +00:00
parent a3276ea411
commit 4814f3f875
+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;
}
/**