diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-10-09 12:35:15 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-10-09 12:35:15 +0200 |
commit | 31a91ef89294087335077b3ffea1b2a6d882c3ef (patch) | |
tree | c0d39f1f53042b0404bee388f88a058c97829430 /apps/files_trashbin/index.php | |
parent | 9e3d28871e837d42fa495a9237bea24b0f0fd414 (diff) | |
download | nextcloud-server-31a91ef89294087335077b3ffea1b2a6d882c3ef.tar.gz nextcloud-server-31a91ef89294087335077b3ffea1b2a6d882c3ef.zip |
fix group delete/restore
Diffstat (limited to 'apps/files_trashbin/index.php')
-rw-r--r-- | apps/files_trashbin/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index d8661e170a5..d079af3fb6d 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -5,7 +5,6 @@ OCP\User::checkLoggedIn(); OCP\App::setActiveNavigationEntry('files_index'); -OCP\Util::addScript('files_trashbin', 'trash'); OCP\Util::addScript('files_trashbin', 'disableDefaultActions'); OCP\Util::addScript('files', 'fileactions'); $tmpl = new OCP\Template('files_trashbin', 'index', 'user'); @@ -15,6 +14,7 @@ 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']) : ''; |