diff options
author | Mario <mario@mariovavti.com> | 2023-08-27 17:48:10 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-08-27 17:48:10 +0000 |
commit | bad7b778b3ae91285d3170d8cac11f4814031a3c (patch) | |
tree | 4682fff8c641f4dace6573fb1af1bbb36cd4e519 /Zotlabs | |
parent | 0a3094fc9a708c4e83d6dd91250ac2105e21b03f (diff) | |
download | volse-hubzilla-bad7b778b3ae91285d3170d8cac11f4814031a3c.tar.gz volse-hubzilla-bad7b778b3ae91285d3170d8cac11f4814031a3c.tar.bz2 volse-hubzilla-bad7b778b3ae91285d3170d8cac11f4814031a3c.zip |
fix php warning
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Pubstream.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Pubstream.php b/Zotlabs/Module/Pubstream.php index 9d3a4f92b..4bd1faeff 100644 --- a/Zotlabs/Module/Pubstream.php +++ b/Zotlabs/Module/Pubstream.php @@ -40,7 +40,7 @@ class Pubstream extends \Zotlabs\Web\Controller { $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); - $mid = (($_REQUEST['mid']) ? unpack_link_id($_REQUEST['mid']) : ''); + $mid = ((isset($_REQUEST['mid'])) ? unpack_link_id($_REQUEST['mid']) : ''); if ($mid === false) { notice(t('Malformed message id.') . EOL); |