Skip to content

Commit

Permalink
Fix php fatal error with group in notifications. closes #5285
Browse files Browse the repository at this point in the history
  • Loading branch information
David Durieux committed Apr 21, 2015
1 parent ab7ec71 commit 4ba53c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/notificationtarget.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ function getItemGroupAddress() {
if (!empty($this->target_object)) {
foreach($this->target_object as $val){
if ($val->fields['groups_id'] > 0) {
$this->getAddressesByGroup(0, $val['groups_id']);
$this->getAddressesByGroup(0, $val->fields['groups_id']);
}
}
}
Expand Down

0 comments on commit 4ba53c8

Please sign in to comment.