diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-02 14:23:13 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-02 14:23:13 -0400 |
commit | dd56416a39b4ddf1ee550b9e5912bcbe3dc88ad8 (patch) | |
tree | e4f3cc60ab4f25fc4d2d6fb8aee552d1d160b873 /core/ajax | |
parent | 3e8a34f9062015e79d4d1a29e8187586feb4cd68 (diff) | |
download | nextcloud-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.php | 2 |
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': |