Skip to content

Commit

Permalink
Merge pull request #13294 from seamuslee001/joomla_receipeients_compa…
Browse files Browse the repository at this point in the history
…tability

dev/joomla#3 CRM-21780 Fix Mailings Recipients box incompatabilites …
  • Loading branch information
JoeMurray authored Dec 17, 2018
2 parents 6fe426f + 83c73d1 commit 946dd2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ang/crmMailing/Recipients.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
var gids = [];
var mids = [];

for (var i in values) {
for (var i = 0; i < values.length; i++) {
var dv = convertValueToObj(values[i]);
if (dv.entity_type == 'civicrm_group') {
gids.push(dv.entity_id);
Expand Down

0 comments on commit 946dd2f

Please sign in to comment.