diff --git a/apps/files/list.php b/apps/files/list.php index f18dc5964b..23b94d9be2 100644 --- a/apps/files/list.php +++ b/apps/files/list.php @@ -26,10 +26,13 @@ $userSession = \OC::$server->getUserSession(); // TODO: move this to the generated config.js $publicUploadEnabled = $config->getAppValue('core', 'shareapi_allow_public_upload', 'yes'); $showgridview = $config->getUserValue($userSession->getUser()->getUID(), 'files', 'show_grid', true); +$isIE = \OCP\Util::isIE(); // renders the controls and table headers template $tmpl = new OCP\Template('files', 'list', ''); $tmpl->assign('publicUploadEnabled', $publicUploadEnabled); -$tmpl->assign('showgridview', $showgridview); +// gridview not available for ie +$tmpl->assign('showgridview', $showgridview && !$isIE); +$tmpl->assign('isIE', $isIE); $tmpl->printPage(); diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php index 2740359436..2bc94ca7af 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -24,10 +24,13 @@ + + checked="checked" /> +