mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
fix warning about unknown option 'ro' by filesystem streamwrapper
it is handled by vfs, so ignoring it here
This commit is contained in:
parent
730b2b7d51
commit
adee0b4c52
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user