diff options
| author | Jani Taskinen <jani@php.net> | 2007-10-04 13:31:11 +0000 |
|---|---|---|
| committer | Jani Taskinen <jani@php.net> | 2007-10-04 13:31:11 +0000 |
| commit | 1be447eb9584794d40d91fcf56b71c90d76ee46d (patch) | |
| tree | ca498f96271fb517c6810d9cc342912854dfec31 /ext/standard/php_fopen_wrapper.c | |
| parent | 91e99495af22ffba7ec6c258d6c8c288ac5c3177 (diff) | |
| download | php-git-1be447eb9584794d40d91fcf56b71c90d76ee46d.tar.gz | |
MFH: Removed ending dots from error messages
Diffstat (limited to 'ext/standard/php_fopen_wrapper.c')
| -rw-r--r-- | ext/standard/php_fopen_wrapper.c | 2 |
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; } |
