From 84b3edbfcb5b2887ad50b5a4dcf4a3ae5c6d865f Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 25 Mar 2013 18:26:57 +0000 Subject: [PATCH] * Filemanager: fixed not working "Save as" for Internet Explorer (all versions), gave PHP Fatal Error --- phpgwapi/inc/class.vfs_webdav_server.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.vfs_webdav_server.inc.php b/phpgwapi/inc/class.vfs_webdav_server.inc.php index b50773a1d5..740f15c8e7 100644 --- a/phpgwapi/inc/class.vfs_webdav_server.inc.php +++ b/phpgwapi/inc/class.vfs_webdav_server.inc.php @@ -668,7 +668,7 @@ class vfs_webdav_server extends HTTP_WebDAV_Server_Filesystem } if (($ok = parent::GET($options)) && $this->force_download) { - if(html::$user_agent == 'msie' && self::$ua_version < 9.0) + if(html::$user_agent == 'msie' && html::$ua_version < 9.0) { $attachment = ''; }