summaryrefslogtreecommitdiffstats
path: root/opmlexporter.php
diff options
context:
space:
mode:
Diffstat (limited to 'opmlexporter.php')
-rw-r--r--opmlexporter.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/opmlexporter.php b/opmlexporter.php
index e247056c6..bbd5f649f 100644
--- a/opmlexporter.php
+++ b/opmlexporter.php
@@ -11,11 +11,11 @@
*
*/
-function feedsToXML($data, $xml_el, $dom){
+function feedsToXML($data, $xml_el, $dom) {
foreach($data as $collection) {
$outline_el = $dom->createElement('outline');
- if ($collection instanceOf OCA\News\Folder){
+ if ($collection instanceOf OCA\News\Folder) {
$outline_el->setAttribute('title', $collection->getName());
$outline_el->setAttribute('text', $collection->getName());
feedsToXML($collection->getChildren(), $outline_el, $dom);