From 7611a5d9849e8d1ca0c7019c546250b0360997c8 Mon Sep 17 00:00:00 2001 From: Lars Strojny Date: Sun, 14 Dec 2008 16:27:30 +0000 Subject: MFB: If a wrapper could not be found it is either a typo or a configuration issue. But in both cases it is critical enough to warn the user. [DOC] (?) --- main/streams/streams.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/streams/streams.c') diff --git a/main/streams/streams.c b/main/streams/streams.c index ec054813da..3f4b1c5826 100755 --- a/main/streams/streams.c +++ b/main/streams/streams.c @@ -2104,8 +2104,8 @@ PHPAPI php_stream_wrapper *php_stream_locate_url_wrapper(const char *path, char n = sizeof(wrapper_name) - 1; } PHP_STRLCPY(wrapper_name, protocol, sizeof(wrapper_name), n); - - php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Unable to find the wrapper \"%s\" - did you forget to enable it when you configured PHP?", wrapper_name); + + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to find the wrapper \"%s\" - did you forget to enable it when you configured PHP?", wrapper_name); wrapperpp = NULL; protocol = NULL; -- cgit v1.2.1