From: Matt Wilmas Date: Wed, 3 Dec 2008 00:10:17 +0000 (+0000) Subject: Fixed error message typo X-Git-Tag: php-5.3.0alpha2~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fafa7f270974fe79698fc1042fac91d57cea38e0;p=php Fixed error message typo --- diff --git a/ext/pdo/pdo_dbh.c b/ext/pdo/pdo_dbh.c index 0829d26782..faff7392cd 100755 --- a/ext/pdo/pdo_dbh.c +++ b/ext/pdo/pdo_dbh.c @@ -923,7 +923,7 @@ static PHP_METHOD(PDO, exec) } if (!statement_len) { - pdo_raise_impl_error(dbh, NULL, "HY000", "trying to execute and empty query" TSRMLS_CC); + pdo_raise_impl_error(dbh, NULL, "HY000", "trying to execute an empty query" TSRMLS_CC); RETURN_FALSE; } PDO_DBH_CLEAR_ERR();