fix warning about unknown option 'ro' by filesystem streamwrapper

it is handled by vfs, so ignoring it here
This commit is contained in:
Ralf Becker 2018-10-18 10:10:09 +02:00
parent 730b2b7d51
commit adee0b4c52

View File

@ -676,6 +676,9 @@ class StreamWrapper implements Vfs\StreamWrapperIface
case 'url': case 'url':
// ignored, only used for download_url method // ignored, only used for download_url method
break; break;
case 'ro':
// ignored here, as it is handled by vfs itself
break;
default: default:
error_log(__METHOD__."('$query') unknown option '$name'!"); error_log(__METHOD__."('$query') unknown option '$name'!");
break; break;