aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-08-27 17:48:10 +0000
committerMario <mario@mariovavti.com>2023-08-27 17:48:10 +0000
commitbad7b778b3ae91285d3170d8cac11f4814031a3c (patch)
tree4682fff8c641f4dace6573fb1af1bbb36cd4e519
parent0a3094fc9a708c4e83d6dd91250ac2105e21b03f (diff)
downloadvolse-hubzilla-bad7b778b3ae91285d3170d8cac11f4814031a3c.tar.gz
volse-hubzilla-bad7b778b3ae91285d3170d8cac11f4814031a3c.tar.bz2
volse-hubzilla-bad7b778b3ae91285d3170d8cac11f4814031a3c.zip
fix php warning
-rw-r--r--Zotlabs/Module/Pubstream.php2
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);