From 410a1e4d6b27812347255522fbf93e87bbf63fdc Mon Sep 17 00:00:00 2001 From: Benjamin Brahmer Date: Fri, 19 Aug 2022 11:26:04 +0200 Subject: fixup for #1861 Signed-off-by: Benjamin Brahmer --- lib/Utility/OPMLExporter.php | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/lib/Utility/OPMLExporter.php b/lib/Utility/OPMLExporter.php index bb813daf8..dddd7bc32 100644 --- a/lib/Utility/OPMLExporter.php +++ b/lib/Utility/OPMLExporter.php @@ -91,19 +91,14 @@ class OPMLExporter { $feedOutline = $document->createElement('outline'); $attributes = [ - ['title', $feed->getTitle()], - ['text', $feed->getTitle()], - ['type', 'rss'], - ['xmlUrl', $feed->getUrl()], - ['htmlUrl', $feed->getLink()], + 'title' => $feed->getTitle(), + 'text' => $feed->getTitle(), + 'type' => 'rss', + 'xmlUrl' => $feed->getUrl(), + 'htmlUrl' => $feed->getLink(), ]; - - foreach ($attributes as $attribute) { - if (is_null($attribute[1])) { - $feedOutline->setAttribute($attribute[0], ""); - } else { - $feedOutline->setAttribute($attribute[0], $attribute[1]); - } + foreach ($attributes as $name => $value) { + $feedOutline->setAttribute($name, $value ?? ''); } return $feedOutline; -- cgit v1.2.3