]> git.mxchange.org Git - friendica.git/commitdiff
more spaces
authorMichael <heluecht@pirati.ca>
Mon, 13 Mar 2017 05:57:37 +0000 (05:57 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 13 Mar 2017 05:57:37 +0000 (05:57 +0000)
include/Contact.php
mod/community.php
mod/network.php
mod/profile.php

index 85dc1008eb674c9c2fe08355c052e222c1b165fd..9fd61f8d5e959aba3891e7de2dc0d8395eb91d1c 100644 (file)
@@ -715,7 +715,7 @@ function posts_from_gcontact(App $a, $gcontact_id) {
                intval($a->pager['itemspage'])
        );
 
-       $o = conversation($a,$r,'community',false);
+       $o = conversation($a, $r, 'community', false);
 
        $o .= alt_pager($a, count($r));
 
@@ -758,7 +758,7 @@ function posts_from_contact_url(App $a, $contact_url) {
                intval($a->pager['itemspage'])
        );
 
-       $o = conversation($a,$r,'community',false);
+       $o = conversation($a, $r, 'community', false);
 
        $o .= alt_pager($a, count($r));
 
index 91b09bba9a11eacec39d6893746a656646ffbe1b..174330401019dd544af812de5101bdb42bc1bbfe 100644 (file)
@@ -84,9 +84,9 @@ function community_content(App $a, $update = 0) {
 
        // we behave the same in message lists as the search module
 
-       $o .= conversation($a,$s,'community',$update);
+       $o .= conversation($a, $s, 'community', $update);
 
-        $o .= alt_pager($a,count($r));
+        $o .= alt_pager($a, count($r));
 
        return $o;
 }
index 284bf3d9617538ea8a2bc557bbd24f76bad0d208..a1181a74cb3a295777c42e54d5262c8630aa00f1 100644 (file)
@@ -773,13 +773,13 @@ function network_content(App $a, $update = 0) {
 
        $mode = (($nouveau) ? 'network-new' : 'network');
 
-       $o .= conversation($a,$items,$mode,$update);
+       $o .= conversation($a, $items, $mode, $update);
 
        if (!$update) {
-               if (get_pconfig(local_user(),'system','infinite_scroll')) {
+               if (get_pconfig(local_user(), 'system', 'infinite_scroll')) {
                        $o .= scroll_loader();
                } else {
-                       $o .= alt_pager($a,count($items));
+                       $o .= alt_pager($a, count($items));
                }
        }
 
index 93f2602e23f6b8b4ef1c40be6818f246bedf3c5c..fbce509d29634e4f6a2402b1636c8360190366fc 100644 (file)
@@ -318,10 +318,10 @@ function profile_content(App $a, $update = 0) {
                );
        }
 
-       $o .= conversation($a,$items,'profile',$update);
+       $o .= conversation($a, $items, 'profile', $update);
 
        if (!$update) {
-               $o .= alt_pager($a,count($items));
+               $o .= alt_pager($a, count($items));
        }
 
        return $o;