From: friendica Date: Wed, 14 Dec 2011 11:51:50 +0000 (-0800) Subject: "new" view broken after liveupdate fixes X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4007e7ec19bfca47a32ec73f1eb10d77f2de785f;p=friendica.git "new" view broken after liveupdate fixes --- diff --git a/mod/network.php b/mod/network.php index e9e761c3ff..8fa0b03e26 100644 --- a/mod/network.php +++ b/mod/network.php @@ -398,10 +398,9 @@ function network_content(&$a, $update = 0) { $simple_update = (($update) ? " and `item`.`unseen` = 1 " : ''); if($nouveau) { - // "New Item View" - show all items unthreaded in reverse created date order - $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, + $items = q("SELECT `item`.*, `item`.`id` AS `item_id`, `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`, `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid` @@ -414,7 +413,7 @@ function network_content(&$a, $update = 0) { ORDER BY `item`.`received` DESC $pager_sql ", intval($_SESSION['uid']) ); - + } else {