From 73dd54c9624a713d8180741c4558b2d56972a5ac Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sat, 30 Mar 2013 16:35:13 +0100 Subject: [PATCH] Don't try to call a an array :-P --- lib/vcategories.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vcategories.php b/lib/vcategories.php index 372706b185a..a1ba0f2482a 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -547,7 +547,7 @@ class OC_VCategories { // job done ;) return true; } - $updates = $ids(); + $updates = $ids; try { $query = 'DELETE FROM `' . self::RELATION_TABLE . '` '; $query .= 'WHERE `objid` IN (' . str_repeat('?,', count($ids)-1) . '?) ';