From 5b81fca2f1bb479b23e813e878d5a67400997b44 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 7 Feb 2012 12:47:49 +0000 Subject: [PATCH] Hide Size in autoindex and move Displayname to first column after name --- phpgwapi/inc/class.groupdav.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpgwapi/inc/class.groupdav.inc.php b/phpgwapi/inc/class.groupdav.inc.php index 979be2adba..51a5e2ff5a 100644 --- a/phpgwapi/inc/class.groupdav.inc.php +++ b/phpgwapi/inc/class.groupdav.inc.php @@ -937,14 +937,14 @@ class groupdav extends HTTP_WebDAV_Server echo "\n"; static $props2show = array( - 'DAV:getcontentlength' => 'Size', + 'DAV:displayname' => 'Displayname', 'DAV:getlastmodified' => 'Last modified', 'DAV:getetag' => 'ETag', 'DAV:getcontenttype' => 'Content type', 'DAV:resourcetype' => 'Resource type', - 'DAV:displayname' => 'Displayname', //'DAV:owner' => 'Owner', //'DAV:current-user-privilege-set' => 'current-user-privilege-set', + //'DAV:getcontentlength' => 'Size', ); $n = 0; foreach($files['files'] as $file)