diff options
| author | Marc Easen <marc@easen.co.uk> | 2012-06-11 21:47:40 +0100 |
|---|---|---|
| committer | Stanislav Malyshev <stas@php.net> | 2012-06-30 16:54:03 -0700 |
| commit | 896ac689c91967dec0601fa9fe048c518da52a3c (patch) | |
| tree | 0713aa9ce09ce390ef5325d0040be4052f8862d5 /ext/mysqli | |
| parent | b8d453d8d4b6a67531aa1c2d0d7bab1e25ed1d4f (diff) | |
| download | php-git-896ac689c91967dec0601fa9fe048c518da52a3c.tar.gz | |
Fixed the common misspelling of the word occurred (occured -> occurred)
Diffstat (limited to 'ext/mysqli')
| -rw-r--r-- | ext/mysqli/mysqli.c | 2 | ||||
| -rw-r--r-- | ext/mysqli/tests/mysqli_stmt_affected_rows.phpt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c index f18a503b5e..6d283aa9ca 100644 --- a/ext/mysqli/mysqli.c +++ b/ext/mysqli/mysqli.c @@ -162,7 +162,7 @@ void php_clear_stmt_bind(MY_STMT *stmt TSRMLS_DC) { if (stmt->stmt) { if (mysqli_stmt_close(stmt->stmt, TRUE)) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error occured while closing statement"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error occurred while closing statement"); return; } } diff --git a/ext/mysqli/tests/mysqli_stmt_affected_rows.phpt b/ext/mysqli/tests/mysqli_stmt_affected_rows.phpt index b8dd11a699..7fc32f7e61 100644 --- a/ext/mysqli/tests/mysqli_stmt_affected_rows.phpt +++ b/ext/mysqli/tests/mysqli_stmt_affected_rows.phpt @@ -63,7 +63,7 @@ require_once('skipifconnectfailure.inc'); // NOTE: the error message varies with the MySQL Server version, dump only the error code! printf("[009] [%d] (error message varies with the MySQL Server version, check the error code)\n", mysqli_stmt_errno($stmt)); - /* an error occured: affected rows should return -1 */ + /* an error occurred: affected rows should return -1 */ if (-1 !== ($tmp = mysqli_stmt_affected_rows($stmt))) printf("[010] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp); |
