mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-08 14:30:05 +01:00
Fix REQUEST_URI if there is ?download in url
This commit is contained in:
parent
0127e6d07c
commit
788cd3e078
@ -627,9 +627,7 @@ class vfs_webdav_server extends HTTP_WebDAV_Server_Filesystem
|
|||||||
*/
|
*/
|
||||||
function __construct()
|
function __construct()
|
||||||
{
|
{
|
||||||
if ($_SERVER['REQUEST_METHOD'] == 'GET' && ($this->force_download = strpos($_SERVER['REQUEST_URI'],'?download') !== false &&
|
if ($_SERVER['REQUEST_METHOD'] == 'GET' && (($this->force_download = strpos($_SERVER['REQUEST_URI'],'?download')) !== false))
|
||||||
// do NOT send content-disposition attachment for etemplates containing ?download=$timestamp
|
|
||||||
strpos($_SERVER['REQUEST_URI'],'?download=') === false))
|
|
||||||
{
|
{
|
||||||
$_SERVER['REQUEST_URI'] = substr($_SERVER['REQUEST_URI'],0,$this->force_download);
|
$_SERVER['REQUEST_URI'] = substr($_SERVER['REQUEST_URI'],0,$this->force_download);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user