]> git.mxchange.org Git - friendica.git/blobdiff - mod/viewsrc.php
Improve Addons documentation
[friendica.git] / mod / viewsrc.php
index 4b511eab13f2d501bbd48286e3f97a807d7189ff..087b9f3d2a73cb6c728d155667e611b8094f2e74 100644 (file)
@@ -27,10 +27,10 @@ function viewsrc_content(App $a)
 
        if (DBM::is_result($item)) {
                if (is_ajax()) {
-                       echo str_replace("\n",'<br />',$item['body']);
+                       echo str_replace("\n", '<br />', $item['body']);
                        killme();
                } else {
-                       $o .= str_replace("\n",'<br />',$item['body']);
+                       $o .= str_replace("\n", '<br />', $item['body']);
                }
        }
        return $o;