diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-05-18 12:17:26 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-05-18 12:19:29 +0200 |
commit | cf6470803e5a1ce8669d50991b50ebec9bed50bf (patch) | |
tree | 30d9197ccb9149e35585b21eadd5548b6d490a4f | |
parent | bc93e68dc7ec5181e931816ae34f9cc6bceb1b90 (diff) | |
download | aur-cf6470803e5a1ce8669d50991b50ebec9bed50bf.tar.gz aur-cf6470803e5a1ce8669d50991b50ebec9bed50bf.tar.xz |
aurjson: Fix multiinfo when using package IDs
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
-rw-r--r-- | web/lib/aurjson.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/aurjson.class.php b/web/lib/aurjson.class.php index 50d859c5..983e7512 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 "; |