summaryrefslogtreecommitdiffstats
path: root/apps/files/simplelist.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/simplelist.php')
-rw-r--r--apps/files/simplelist.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files/simplelist.php b/apps/files/simplelist.php
index 7d571e697c0..b20bdcc9c63 100644
--- a/apps/files/simplelist.php
+++ b/apps/files/simplelist.php
@@ -26,11 +26,10 @@ $config = \OC::$server->getConfig();
$userSession = \OC::$server->getUserSession();
$showgridview = $config->getUserValue($userSession->getUser()->getUID(), 'files', 'show_grid', false);
-$isIE = OC_Util::isIe();
// renders the controls and table headers template
$tmpl = new OCP\Template('files', 'simplelist', '');
// gridview not available for ie
-$tmpl->assign('showgridview', $showgridview && !$isIE);
+$tmpl->assign('showgridview', $showgridview);
$tmpl->printPage();