diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-01-03 00:48:55 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-01-03 00:48:55 +0000 |
commit | 939a70a86d004e21058522e287cb276d925fc4f3 (patch) | |
tree | 9b36337c0553b6c5cc4a92646398cac37e8809de | |
parent | d2317fc110964fda9740fcb6973cd57815f72a31 (diff) | |
download | php-git-939a70a86d004e21058522e287cb276d925fc4f3.tar.gz |
s/then/than/ Thanks Jani & Andi
-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 582023c30a..4963b563eb 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -920,7 +920,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; } @@ -1027,7 +1027,7 @@ PHPAPI PHP_FUNCTION(fgetss) if (bytes != NULL) { convert_to_long_ex(bytes); if (Z_LVAL_PP(bytes) <= 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; } @@ -1641,7 +1641,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; } |