]> git.mxchange.org Git - friendica.git/commitdiff
Rearranged code
authorMichael <heluecht@pirati.ca>
Wed, 13 Sep 2017 09:20:08 +0000 (09:20 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 13 Sep 2017 09:20:08 +0000 (09:20 +0000)
mod/network.php

index 9d68b3314609795662569da65e8b5ab887801d06..e4a33fe1b56f1d421503805609cffdec961a2749 100644 (file)
@@ -290,7 +290,7 @@ function network_query_get_sel_group(App $a) {
        return $group;
 }
 
-function networkSetPager($a, $update) {
+function networkPager($a, $update) {
        if ($update) {
                // only setup pagination on initial page view
                return ' LIMIT 100';
@@ -442,7 +442,7 @@ function networkFlatView(App $a, $update = 0) {
                $sql_post_table = " INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent`";
        }
 
-       $pager_sql = networkSetPager($a, $update);
+       $pager_sql = networkPager($a, $update);
 
        // show all items unthreaded in reverse created date order
        $items = q("SELECT %s FROM `item` $sql_post_table %s
@@ -696,8 +696,6 @@ function networkThreadedView(App $a, $update = 0) {
                $sql_extra3 .= " AND $sql_table.`mention`";
        }
 
-       $pager_sql = networkSetPager($a, $update);
-
        // Normal conversation view
        if ($order === 'post') {
                $ordering = "`created`";
@@ -719,6 +717,8 @@ function networkThreadedView(App $a, $update = 0) {
                $sql_extra3 .= sprintf(" AND $sql_order <= '%s'", dbesc($_GET["offset"]));
        }
 
+       $pager_sql = networkPager($a, $update);
+
        switch ($order_mode) {
                case 'received':
                        if ($last_received != '') {