diff options
author | Vincent Petry <PVince81@yahoo.fr> | 2013-08-29 20:59:45 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-09-13 19:59:15 +0200 |
commit | 4549cf519e838a2dd2828453c4157231bccd3287 (patch) | |
tree | e5f9a6954106c206ea3d1bb15afeae1c1b434ca3 /apps/files_trashbin | |
parent | 4ab5e58e0224d7668e2a6fc4f25bc53dc7d97a03 (diff) | |
download | nextcloud-server-4549cf519e838a2dd2828453c4157231bccd3287.tar.gz nextcloud-server-4549cf519e838a2dd2828453c4157231bccd3287.zip |
Added missing "files" JS to files_trashbin module
The recent refactoring for the breadcrumb resizing relies on the "Files"
object which is in the "files" Javascript file.
This fix includes it here as well.
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/index.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index c28a88d541a..c9468b60bd4 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -14,6 +14,7 @@ OCP\Util::addStyle('files', 'files'); OCP\Util::addScript('files', 'filelist'); // filelist overrides OCP\Util::addScript('files_trashbin', 'filelist'); +OCP\Util::addscript('files', 'files'); $dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; |