From: Antony Dovgal Date: Thu, 23 Mar 2006 19:01:46 +0000 (+0000) Subject: return FALSE if driver doesn't support quoting (this is what docu says) X-Git-Tag: php-5.1.3RC2~39 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1ad4dd8795d4cf6d3750c105d94511814b3d7d26;p=php return FALSE if driver doesn't support quoting (this is what docu says) also fixed PECL bug #6365 --- diff --git a/ext/pdo/pdo_dbh.c b/ext/pdo/pdo_dbh.c index ec4a3fe3d8..458a36bcf6 100755 --- a/ext/pdo/pdo_dbh.c +++ b/ext/pdo/pdo_dbh.c @@ -1036,6 +1036,7 @@ static PHP_METHOD(PDO, quote) RETURN_STRINGL(qstr, qlen, 0); } PDO_HANDLE_DBH_ERR(); + RETURN_FALSE; } /* }}} */