aboutsummaryrefslogtreecommitdiffstats
path: root/core/ajax
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-11-14 11:17:21 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2012-11-14 11:17:21 +0100
commite06513d76bb7b91f6969ce318f66c8b1c0cc264a (patch)
tree5505c2c980372d32f800414505837ec5951357cc /core/ajax
parent99af3433d1cefacec8df709adeb958d7bb3177cf (diff)
downloadnextcloud-server-e06513d76bb7b91f6969ce318f66c8b1c0cc264a.tar.gz
nextcloud-server-e06513d76bb7b91f6969ce318f66c8b1c0cc264a.zip
Fixing syntax error - closes #406
Diffstat (limited to 'core/ajax')
-rw-r--r--core/ajax/vcategories/favorites.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ajax/vcategories/favorites.php b/core/ajax/vcategories/favorites.php
index 62ae07a24f6..db4244d601a 100644
--- a/core/ajax/vcategories/favorites.php
+++ b/core/ajax/vcategories/favorites.php
@@ -25,6 +25,6 @@ if(is_null($type)) {
}
$categories = new OC_VCategories($type);
-$ids = $categories->getFavorites($type));
+$ids = $categories->getFavorites($type);
OC_JSON::success(array('ids' => $ids));