From fafa7f270974fe79698fc1042fac91d57cea38e0 Mon Sep 17 00:00:00 2001 From: Matt Wilmas Date: Wed, 3 Dec 2008 00:10:17 +0000 Subject: [PATCH] Fixed error message typo --- ext/pdo/pdo_dbh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.50.1