diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-06-24 19:16:50 -0400 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-06-27 01:05:36 +0200 |
commit | bc68f14c4baba0438bf019af144564eec6624760 (patch) | |
tree | a90dca4210376ff5aa98a197927ad527364b8fde /apps/files_sharing/appinfo/app.php | |
parent | 819811461535cceb8208651f6a131cbb97efd169 (diff) | |
download | nextcloud-server-bc68f14c4baba0438bf019af144564eec6624760.tar.gz nextcloud-server-bc68f14c4baba0438bf019af144564eec6624760.zip |
Prepare drop down UI for share API
Diffstat (limited to 'apps/files_sharing/appinfo/app.php')
-rw-r--r-- | apps/files_sharing/appinfo/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index bbb753d5e69..d51a4f51642 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -17,7 +17,7 @@ OCP\Util::connectHook('OC_User', 'post_removeFromGroup', 'OC_Share', 'removeFrom $dir = isset($_GET['dir']) ? $_GET['dir'] : '/'; if ($dir != '/Shared' || OCP\Config::getAppValue('files_sharing', 'resharing', 'yes') == 'yes') { - OCP\Util::addscript("files_sharing", "share"); + OCP\Util::addScript('core', 'share'); } OCP\Util::addscript("3rdparty", "chosen/chosen.jquery.min"); OCP\Util::addStyle( 'files_sharing', 'sharing' ); |