diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-10-27 17:25:10 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-10-27 17:25:10 -0400 |
commit | fefc4e17074b96ef944716ae7a6850fbfe76e55d (patch) | |
tree | 2b08cddcb57b80d9d80c1af57aa2e079d41a6571 | |
parent | 6f5d0ec9a9deaa0894161e001fd34baecf57f131 (diff) | |
download | nextcloud-server-fefc4e17074b96ef944716ae7a6850fbfe76e55d.tar.gz nextcloud-server-fefc4e17074b96ef944716ae7a6850fbfe76e55d.zip |
Load all apps in core share ajax file for apps to register their share backends
-rw-r--r-- | core/ajax/share.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/ajax/share.php b/core/ajax/share.php index 0fa162fb371..efe01dff886 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -21,6 +21,7 @@ OC_JSON::checkLoggedIn(); OCP\JSON::callCheck(); +OC_App::loadApps(); if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSource'])) { switch ($_POST['action']) { |