From cf6470803e5a1ce8669d50991b50ebec9bed50bf Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Sun, 18 May 2014 12:17:26 +0200 Subject: aurjson: Fix multiinfo when using package IDs Signed-off-by: Lukas Fleischer --- web/lib/aurjson.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/lib') diff --git a/web/lib/aurjson.class.php b/web/lib/aurjson.class.php index 50d859c..983e751 100644 --- a/web/lib/aurjson.class.php +++ b/web/lib/aurjson.class.php @@ -334,7 +334,7 @@ class AurJSON { $where_condition = ""; if ($ids) { $ids_value = implode(',', $args['ids']); - $where_condition .= "ID IN ($ids_value) "; + $where_condition .= "Packages.ID IN ($ids_value) "; } if ($ids && $names) { $where_condition .= "OR "; -- cgit v1.2.3-54-g00ecf