diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-06-04 20:16:44 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-06-04 20:16:44 +0200 |
commit | 1eb0faa2642babdd3031fdfa611ee10d1a3ccec5 (patch) | |
tree | 78b311b484839586f78200bb4b537627de89958a /files/index.php | |
parent | 3892fe55110ce86d742cabcf1422d96115590c5b (diff) | |
download | nextcloud-server-1eb0faa2642babdd3031fdfa611ee10d1a3ccec5.tar.gz nextcloud-server-1eb0faa2642babdd3031fdfa611ee10d1a3ccec5.zip |
make fileactions extendable by plugins
Diffstat (limited to 'files/index.php')
-rw-r--r-- | files/index.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/files/index.php b/files/index.php index 79f8b677018..d796583a4ae 100644 --- a/files/index.php +++ b/files/index.php @@ -36,6 +36,7 @@ if( !OC_USER::isLoggedIn()){ OC_UTIL::addStyle( "files", "files" ); OC_UTIL::addScript( "files", "files" ); OC_UTIL::addScript( 'files', 'filelist' ); +OC_UTIL::addScript( 'files', 'fileactions' ); OC_APP::setActiveNavigationEntry( "files_index" ); // Load the files $dir = isset( $_GET['dir'] ) ? $_GET['dir'] : ''; |