summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2007-09-07 18:23:58 +0000
committerPierre Joye <pajoye@php.net>2007-09-07 18:23:58 +0000
commit793956a0e1e13ffba45884b3b911c8a9145abcd4 (patch)
tree8c22194fd55cc0614011580b6624b380907f6e05
parenta14ef42c0c66953cb177c8fd486d82b975a00410 (diff)
downloadphp-git-793956a0e1e13ffba45884b3b911c8a9145abcd4.tar.gz
- #42592, remove ending dot in warning msg
-rw-r--r--ext/standard/string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c
index 71e70af42a..3722e29aa5 100644
--- a/ext/standard/string.c
+++ b/ext/standard/string.c
@@ -659,7 +659,7 @@ PHP_FUNCTION(wordwrap)
}
if (linelength == 0 && docut) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't force cut when width is zero.");
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't force cut when width is zero");
RETURN_FALSE;
}