ZF-12525: Incorrect parameter in Zend\Db\Adapter\Driver\Mysqli\Statement::prepare
Description
Following bug applies to ZF2 (2.2) - could not find a place where to file this so here it goes.
In the prepare method of Zend\Db\Adapter\Driver\Mysqli\Statement the following line of code:
$this->resource = $this->mysqli->prepare($this->sql);
should actually be:
$this->resource = $this->mysqli->prepare($sql);
Comments
Posted by Frank Brückner (frosch) on 2013-02-20T09:56:35.000+0000
Please report all bugs in ZF2 on Github. Thanks!