From c7d6dd66d429283a43bf440db2bd84ff06178ee6 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 27 May 2015 12:15:53 +0000 Subject: [PATCH] remove double schema prefix "vfs://defaultvfs://default/path" --- etemplate/inc/class.etemplate_widget_template.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/inc/class.etemplate_widget_template.inc.php b/etemplate/inc/class.etemplate_widget_template.inc.php index a54f05c0d5..47965567b9 100644 --- a/etemplate/inc/class.etemplate_widget_template.inc.php +++ b/etemplate/inc/class.etemplate_widget_template.inc.php @@ -193,7 +193,7 @@ class etemplate_widget_template extends etemplate_widget if ($url[0] == '/') $url = egw::link($url); // mtime postfix has to use '?download=', as our WebDAV treats everything else literal and not ignore them like Apache for static files! - $url .= '?download='.filemtime(egw_vfs::PREFIX.$path); + $url .= '?download='.filemtime($path); } } //error_log(__METHOD__."('$path') returning $url");