diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-01-03 00:50:01 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-01-03 00:50:01 +0000 |
commit | cc6dd2f296fdc20cc9e342d15afda250acb7c6e8 (patch) | |
tree | 1f42ca0aa8b06788534fc34904b8e248269da27c | |
parent | 1fc017d8a3ed640587cafc3174dfca1c882ed79f (diff) | |
download | php-git-cc6dd2f296fdc20cc9e342d15afda250acb7c6e8.tar.gz |
MFH: s/then/than/
-rw-r--r-- | ext/standard/file.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index 1d5ec1ff13..e8b3f8d4a8 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -1375,7 +1375,7 @@ PHPAPI PHP_FUNCTION(fgets) len = Z_LVAL_PP(arg2); if (len <= 0) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater then 0."); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater than 0."); RETURN_FALSE; } @@ -1472,7 +1472,7 @@ PHPAPI PHP_FUNCTION(fgetss) convert_to_long_ex(bytes); len = Z_LVAL_PP(bytes); if (len <= 0) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater then 0."); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater than 0."); RETURN_FALSE; } @@ -2137,7 +2137,7 @@ PHPAPI PHP_FUNCTION(fread) convert_to_long_ex(arg2); len = Z_LVAL_PP(arg2); if (len <= 0) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater then 0."); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater than 0."); RETURN_FALSE; } |