Skip to content

Commit

Permalink
bugfix: insert spaces between phone numbers (fixes LMS+ chilek#608 )
Browse files Browse the repository at this point in the history
  • Loading branch information
chilek committed Sep 4, 2018
1 parent 42ad7f7 commit d8a9eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/lms-payments.php
Expand Up @@ -423,7 +423,7 @@ function get_period($period) {
GROUP BY va.ownerid, a2.id
) voipcost ON voipcost.customerid = a.customerid AND voipcost.assignmentid = a.id
LEFT JOIN (
SELECT vna2.assignment_id, " . $DB->GroupConcat('vn2.phone', ', ') . " AS phones
SELECT vna2.assignment_id, " . $DB->GroupConcat('vn2.phone', "', '") . " AS phones
FROM voip_number_assignments vna2
LEFT JOIN voip_numbers vn2 ON vn2.id = vna2.number_id
GROUP BY vna2.assignment_id
Expand Down

0 comments on commit d8a9eb1

Please sign in to comment.