Needs review
Project:
Heartbeat
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Aug 2012 at 23:04 UTC
Updated:
11 Jun 2013 at 21:38 UTC
Jump to comment: Most recent
Notice: Undefined index: exclude_og in heartbeat_block_save() (line 432 of /home/jd/sites/en/sites/all/modules/heartbeat/heartbeat.module)
Comments
Comment #1
Anonymous (not verified) commentedAny updates on this bug?
Comment #2
Bitvark commentedIt seems changing line 432 resolves it. Need testing
from:
variable_set('exclude_og_' . drupal_strtolower($stream->class), $edit['exclude_og']);to:
if (isset($edit['exclude_og'])) variable_set('exclude_og_' . drupal_strtolower($stream->class), $edit['exclude_og']);Comment #3
Anonymous (not verified) commentedIt resolved the error message I was getting for the Heartbeats and User Activity blocks. Thanks!