From: Andrey Hristov Date: Thu, 28 Jun 2007 09:07:40 +0000 (+0000) Subject: Remove dot at the end of the message X-Git-Tag: php-5.2.4RC1~274 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e1f222858f1f430927da508a1e093285a24c9b8c;p=php Remove dot at the end of the message --- diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index 5afd565ff5..66784bea83 100644 --- a/ext/mysqli/mysqli_api.c +++ b/ext/mysqli/mysqli_api.c @@ -239,7 +239,7 @@ PHP_FUNCTION(mysqli_stmt_bind_result) var_cnt = argc - start; if (var_cnt != mysql_stmt_field_count(stmt->stmt)) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Number of bind variables doesn't match number of fields in prepared statement."); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Number of bind variables doesn't match number of fields in prepared statement"); efree(args); RETURN_FALSE; }