summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2004-01-03 00:50:01 +0000
committerIlia Alshanetsky <iliaa@php.net>2004-01-03 00:50:01 +0000
commitcc6dd2f296fdc20cc9e342d15afda250acb7c6e8 (patch)
tree1f42ca0aa8b06788534fc34904b8e248269da27c
parent1fc017d8a3ed640587cafc3174dfca1c882ed79f (diff)
downloadphp-git-cc6dd2f296fdc20cc9e342d15afda250acb7c6e8.tar.gz
MFH: s/then/than/
-rw-r--r--ext/standard/file.c6
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;
}