diff options
Diffstat (limited to 'apps/files_trashbin/index.php')
-rw-r--r-- | apps/files_trashbin/index.php | 37 |
1 files changed, 2 insertions, 35 deletions
diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 16cd5ecd4cd..59258a6cf16 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -3,45 +3,12 @@ // Check if we are a user OCP\User::checkLoggedIn(); -OCP\App::setActiveNavigationEntry('files_index'); - OCP\Util::addScript('files_trashbin', 'disableDefaultActions'); -OCP\Util::addScript('files', 'fileactions'); -$tmpl = new OCP\Template('files_trashbin', 'index', 'user'); -OCP\Util::addStyle('files', 'files'); +$tmpl = new OCP\Template('files_trashbin', 'index', ''); + OCP\Util::addStyle('files_trashbin', 'trash'); -OCP\Util::addScript('files', 'filesummary'); -OCP\Util::addScript('files', 'breadcrumb'); -OCP\Util::addScript('files', 'filelist'); -// filelist overrides OCP\Util::addScript('files_trashbin', 'filelist'); -OCP\Util::addscript('files', 'files'); OCP\Util::addScript('files_trashbin', 'trash'); -$dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; - -$isIE8 = false; -preg_match('/MSIE (.*?);/', $_SERVER['HTTP_USER_AGENT'], $matches); -if (count($matches) > 0 && $matches[1] <= 8){ - $isIE8 = true; -} - -// if IE8 and "?dir=path" was specified, reformat the URL to use a hash like "#?dir=path" -if ($isIE8 && isset($_GET['dir'])){ - if ($dir === ''){ - $dir = '/'; - } - header('Location: ' . OCP\Util::linkTo('files_trashbin', 'index.php') . '#?dir=' . \OCP\Util::encodePath($dir)); - exit(); -} - -$tmpl->assign('dir', $dir); -$tmpl->assign('disableSharing', true); - -$nav = new OCP\Template('files', 'appnavigation', ''); -$nav->assign('trash', true); - -$tmpl->assign('appNavigation', $nav); - $tmpl->printPage(); |