Active
Project:
Mailout
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Aug 2008 at 10:05 UTC
Updated:
17 Sep 2008 at 15:37 UTC
In current dev version it is not possible to select groups when sending emails. There is a small bug in mailout_send.inc
142: // Build options list of all Organic Groups.
143: if (module_exists('og')) {
144: $options_groups = og_all_groups_options();
145: // This field allows sending of mailout to mailout lists.
146: if(count($group_array)) {
Line 146 should be:
146: if(count($options_groups)) {
Comments
Comment #1
daniel.hunt commentedI fixed this in my patch here - but it includes some other stuff too