Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2022-08-19 12:26:04 +0300
committerBenjamin Brahmer <info@b-brahmer.de>2022-08-19 16:57:03 +0300
commit410a1e4d6b27812347255522fbf93e87bbf63fdc (patch)
tree086c2063287026ddbe19a390eaac5d4e27b9c4a7
parent1784406fa770abb066f9e7d9714e2ca49b9b0aae (diff)
fixup for #1861
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
-rw-r--r--lib/Utility/OPMLExporter.php19
1 files 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;