From c41cb192c9e903ac6b4a911b851b848e71a97303 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 24 Jun 2012 23:12:20 -0400 Subject: [PATCH] Fix which line needs '' wrapped around the array values --- lib/public/share.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/public/share.php b/lib/public/share.php index 469b91b9f12..a00b35fef46 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -397,10 +397,10 @@ class Share { if (isset($shareType) && isset($shareWith)) { // Include all user and group items if ($shareType == self::$shareTypeUserAndGroups) { - $where .= " AND share_type IN ('".self::SHARE_TYPE_USER."','".self::SHARE_TYPE_GROUP."','".self::$shareTypeGroupUserUnique."')"; + $where .= " AND share_type IN (".self::SHARE_TYPE_USER.",".self::SHARE_TYPE_GROUP.",".self::$shareTypeGroupUserUnique.")"; $groups = \OC_Group::getUserGroups($shareWith); $userAndGroups = array_merge(array($shareWith), $groups); - $where .= " AND share_with IN ('".implode(",", $userAndGroups).")"; + $where .= " AND share_with IN ('".implode("','", $userAndGroups)."')"; } else { $where .= " AND share_type = ".$shareType." AND share_with = '".$shareWith."'"; }