summaryrefslogtreecommitdiff
path: root/ext/standard/php_fopen_wrapper.c
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2007-09-30 05:49:45 +0000
committerJani Taskinen <jani@php.net>2007-09-30 05:49:45 +0000
commit6723ed1db3c32a55ed2fb63ff9bf9405220d0a2e (patch)
tree550290c29275bd2cbe31400d6cde53c53dc6a1fd /ext/standard/php_fopen_wrapper.c
parentadae5131f37a9d925f5a5fcf107572de3ef784b2 (diff)
downloadphp-git-6723ed1db3c32a55ed2fb63ff9bf9405220d0a2e.tar.gz
MFH: Nuked ending dots from error messages
Diffstat (limited to 'ext/standard/php_fopen_wrapper.c')
-rw-r--r--ext/standard/php_fopen_wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_fopen_wrapper.c b/ext/standard/php_fopen_wrapper.c
index 52fb11f5a7..2c4e0176b3 100644
--- a/ext/standard/php_fopen_wrapper.c
+++ b/ext/standard/php_fopen_wrapper.c
@@ -253,7 +253,7 @@ php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, char *path, ch
pathdup = estrndup(path + 6, strlen(path + 6));
p = strstr(pathdup, "/resource=");
if (!p) {
- php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "No URL resource specified.");
+ php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "No URL resource specified");
efree(pathdup);
return NULL;
}