diff options
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Notify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Notify.php b/Zotlabs/Module/Notify.php index 4cbcfee05..0af2ec93a 100644 --- a/Zotlabs/Module/Notify.php +++ b/Zotlabs/Module/Notify.php @@ -10,7 +10,7 @@ class Notify extends Controller { if(! local_channel()) return; - if($_REQUEST['notify_id']) { + if(isset($_REQUEST['notify_id']) && $_REQUEST['notify_id']) { $update_notices_per_parent = PConfig::Get(local_channel(), 'system', 'update_notices_per_parent', 1); if($update_notices_per_parent) { |