summaryrefslogtreecommitdiffstats
path: root/core/ajax
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2012-07-02 14:23:13 -0400
committerMichael Gapczynski <mtgap@owncloud.com>2012-07-02 14:23:13 -0400
commitdd56416a39b4ddf1ee550b9e5912bcbe3dc88ad8 (patch)
treee4f3cc60ab4f25fc4d2d6fb8aee552d1d160b873 /core/ajax
parent3e8a34f9062015e79d4d1a29e8187586feb4cd68 (diff)
downloadnextcloud-server-dd56416a39b4ddf1ee550b9e5912bcbe3dc88ad8.tar.gz
nextcloud-server-dd56416a39b4ddf1ee550b9e5912bcbe3dc88ad8.zip
Remove the method getItemsSharedStatuses, it is easy enough to just pass the format instead
Diffstat (limited to 'core/ajax')
-rw-r--r--core/ajax/share.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ajax/share.php b/core/ajax/share.php
index c9bee6a7ed8..b1b619e6220 100644
--- a/core/ajax/share.php
+++ b/core/ajax/share.php
@@ -44,7 +44,7 @@ if (isset($_POST['action'])) {
} else if (isset($_GET['fetch'])) {
switch ($_GET['fetch']) {
case 'getItemsSharedStatuses':
- $return = OCP\Share::getItemsSharedStatuses($_GET['itemType']);
+ $return = OCP\Share::getItemsShared($_GET['itemType'], OCP\Share::FORMAT_STATUSES);
($return) ? OC_JSON::success(array('data' => $return)) : OC_JSON::error();
break;
case 'getItemShared':