Change this files to use the API instead of referencing the group tables directly

This commit is contained in:
Tim Almdal
2009-10-21 11:50:42 -07:00
parent f04177f138
commit b528fbde57
3 changed files with 5 additions and 2 deletions

View File

@@ -78,6 +78,9 @@ class notification {
$subscriber_ids[] = $subscriber->user_id;
}
if (empty($subscriber_ids)) {
return array();
}
$users = Identity::get_user_list($subscriber_ids);
$subscribers = array();