mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-03-09 12:43:00 +01:00
ignore double slashes in the Request-URI
This commit is contained in:
parent
50da59dc37
commit
5d7d48aea3
@ -180,6 +180,8 @@ class HTTP_WebDAV_Server
|
||||
// copy $_SERVER variables to local _SERVER array
|
||||
// so that derived classes can simply modify these
|
||||
$this->_SERVER = $_SERVER;
|
||||
// ignore double slashes in the Request-URI
|
||||
$this->_SERVER['REQUEST_URI'] = str_replace('//', '/', $_SERVER['REQUEST_URI']);
|
||||
}
|
||||
|
||||
// }}}
|
||||
|
Loading…
Reference in New Issue
Block a user