From 706be58df2feb01fa40114dc994dcc0fc722e11c Mon Sep 17 00:00:00 2001 From: DariusIII Date: Fri, 27 Jul 2018 12:47:54 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- app/Models/Release.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Release.php b/app/Models/Release.php index 34c2e29da..c727004c2 100644 --- a/app/Models/Release.php +++ b/app/Models/Release.php @@ -488,7 +488,7 @@ class Release extends Model 'tve.se_complete', 'cp.title as parent_category', 'c.title as sub_category', - DB::raw("CONCAT(cp.title, ' > ', c.title) AS category_name, CONCAT(cp.id, ',', c.id) AS category_ids,GROUP_CONCAT(g2.name ORDER BY g2.name ASC SEPARATOR ',') AS group_names") + DB::raw("CONCAT(cp.title, ' > ', c.title) AS category_name, CONCAT(cp.id, ',', c.id) AS category_ids,GROUP_CONCAT(g2.name ORDER BY g2.name ASC SEPARATOR ',') AS group_names"), ] ) ->leftJoin('groups as g', 'g.id', '=', 'releases.groups_id')