aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2025-02-21 09:51:59 +0000
committerMario <mario@mariovavti.com>2025-02-21 09:51:59 +0000
commitb77fac43c8605100ffdc72ef701ba014490df168 (patch)
tree7b864078aff0cee9057057730d2e6eff409d4a4f
parent2b4b409c01b29c38fcc4213cd9a2444f3312e0b5 (diff)
downloadvolse-hubzilla-b77fac43c8605100ffdc72ef701ba014490df168.tar.gz
volse-hubzilla-b77fac43c8605100ffdc72ef701ba014490df168.tar.bz2
volse-hubzilla-b77fac43c8605100ffdc72ef701ba014490df168.zip
feedutils: fix php warnings and style
-rw-r--r--include/feedutils.php26
1 files 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 = '<as:target>' . "\r\n";
$r = json_decode($item['target'],false);
- if(! $r)
+
+ if (!$r) {
return '';
- if($r->type)
+ }
+
+ if (isset($r->type)) {
$o .= '<as:obj_type>' . xmlify($r->type) . '</as:obj_type>' . "\r\n";
- if($r->id)
+ }
+
+ if (isset($r->id)) {
$o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
- if($r->title)
+ }
+
+ if (isset($r->title)) {
$o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
- if($r->links) {
+ }
+
+ if (isset($r->link)) {
/** @FIXME !!! */
if(substr($r->link,0,1) === '<') {
if(strstr($r->link,'&') && (! strstr($r->link,'&amp;')))
@@ -244,11 +253,14 @@ function construct_activity_target($item) {
$r->link = preg_replace('/\<link(.*?)\"\>/','<link$1"/>',$r->link);
$o .= $r->link;
}
- else
+ else {
$o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
+ }
}
- if($r->content)
+
+ if(isset($r->content)) {
$o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
+ }
$o .= '</as:target>' . "\r\n";