aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Notify.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-10-26 19:11:13 +0000
committerMario <mario@mariovavti.com>2022-10-26 19:11:13 +0000
commitc8bc1b560bceb391e0af0c11f743fe5015443cff (patch)
tree3691a150d79aceb9818ba34affa7981e93b75c93 /Zotlabs/Module/Notify.php
parent40ae6b396f3760c4c4b6e4de776869a88ce07fce (diff)
downloadvolse-hubzilla-c8bc1b560bceb391e0af0c11f743fe5015443cff.tar.gz
volse-hubzilla-c8bc1b560bceb391e0af0c11f743fe5015443cff.tar.bz2
volse-hubzilla-c8bc1b560bceb391e0af0c11f743fe5015443cff.zip
missing field in query
Diffstat (limited to 'Zotlabs/Module/Notify.php')
-rw-r--r--Zotlabs/Module/Notify.php2
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) {