From b77fac43c8605100ffdc72ef701ba014490df168 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 21 Feb 2025 09:51:59 +0000 Subject: feedutils: fix php warnings and style --- include/feedutils.php | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/include/feedutils.php b/include/feedutils.php index 73a8999ae..1487ea2d6 100644 --- a/include/feedutils.php +++ b/include/feedutils.php @@ -228,15 +228,24 @@ function construct_activity_target($item) { if($item['target']) { $o = '' . "\r\n"; $r = json_decode($item['target'],false); - if(! $r) + + if (!$r) { return ''; - if($r->type) + } + + if (isset($r->type)) { $o .= '' . xmlify($r->type) . '' . "\r\n"; - if($r->id) + } + + if (isset($r->id)) { $o .= '' . xmlify($r->id) . '' . "\r\n"; - if($r->title) + } + + if (isset($r->title)) { $o .= '' . xmlify($r->title) . '' . "\r\n"; - if($r->links) { + } + + if (isset($r->link)) { /** @FIXME !!! */ if(substr($r->link,0,1) === '<') { if(strstr($r->link,'&') && (! strstr($r->link,'&'))) @@ -244,11 +253,14 @@ function construct_activity_target($item) { $r->link = preg_replace('/\/','',$r->link); $o .= $r->link; } - else + else { $o .= '' . "\r\n"; + } } - if($r->content) + + if(isset($r->content)) { $o .= '' . xmlify(bbcode($r->content)) . '' . "\r\n"; + } $o .= '' . "\r\n"; -- cgit v1.2.3