1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00

Fixed error message typo

This commit is contained in:
Matt Wilmas
2008-12-03 00:10:17 +00:00
parent cb98d43a6a
commit fafa7f2709
+1 -1
View File
@@ -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();