Add missing parameter to rawQuery()

Previously bound parameters were put in the incorrect position.

Refs #6992
This commit is contained in:
mark_story 2015-07-10 12:56:49 -04:00
parent 77ee00e8db
commit 65c1745349

View file

@ -402,7 +402,7 @@ class DboSource extends DataSource {
*/ */
public function rawQuery($sql, $params = array()) { public function rawQuery($sql, $params = array()) {
$this->took = $this->numRows = false; $this->took = $this->numRows = false;
return $this->execute($sql, $params); return $this->execute($sql, array(), $params);
} }
/** /**