summaryrefslogtreecommitdiffstats
path: root/opmlexporter.php
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2012-09-07 15:21:03 +0200
committerThomas Mueller <thomas.mueller@tmit.eu>2012-09-07 15:21:03 +0200
commita59854cc809828501371dc934362c81a82e83cee (patch)
tree24e9172389f9fdf3aaaac50452f90c8dc9e77ed1 /opmlexporter.php
parentce2e3bd0cba51d5625c53d14bd58204eca89eaf2 (diff)
adding space between) and {
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);