I am repeatedly encountering a bug while trying to file a bug with
Zend_Db_Statement.

    HTTP Status 404 - No view for result [error] exists for action
[ViewIssue]

This is annoying.

When someone from Zend fixes this, could you create the issue?  It's
minor, but it's something that should be fixed.

Thanks,

-Matt

--------------------

Subject:
Zend_Db_Statement::bindValue() doesn't pass the $type parameter on to
bindParam()

Priority: Minor

Body:
{code}
    public function bindParam($parameter, &$variable, $type = null,
$length = null, $options = null)
    {
        // ...
    }

    /**
     * Binds a value to a parameter.
     *
     * @param mixed $parameter Name the parameter, either integer or string.
     * @param mixed $value     Scalar value to bind to the parameter.
     * @param mixed $type      OPTIONAL Datatype of the parameter.
     * @return bool
     */
    public function bindValue($parameter, $value, $type = null)
    {
        return $this->bindParam($parameter, $value);
    }
{code}

Affects Version: 1.5.0

Fix Version Priority: Should Have

Reply via email to