Skip to content

Commit

Permalink
dev/joomla#3 CRM-21780 Fix Mailings Receipients box incompatabilites …
Browse files Browse the repository at this point in the history
…with certain instances of Joomla
  • Loading branch information
seamuslee001 committed Dec 17, 2018
1 parent aa31a7a commit 83c73d1
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 83c73d1

Please sign in to comment.