aboutsummaryrefslogtreecommitdiffstats
path: root/mod/network.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-02-03 20:39:43 -0800
committerfriendica <info@friendica.com>2013-02-03 20:39:43 -0800
commit13ff4b9f0150ae9118368d00d3dcc458f32ba68e (patch)
tree7ec2cb0b2a317c30d5b6038643a4ada7fc83e940 /mod/network.php
parentfb2b21626ece67862708600b11acb4c748c649f4 (diff)
downloadvolse-hubzilla-13ff4b9f0150ae9118368d00d3dcc458f32ba68e.tar.gz
volse-hubzilla-13ff4b9f0150ae9118368d00d3dcc458f32ba68e.tar.bz2
volse-hubzilla-13ff4b9f0150ae9118368d00d3dcc458f32ba68e.zip
bring back selective "mark unseen" on network page now that we can mark all unseen
Diffstat (limited to 'mod/network.php')
-rw-r--r--mod/network.php17
1 files changed, 6 insertions, 11 deletions
diff --git a/mod/network.php b/mod/network.php
index cca69dc52..04390d3f1 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -674,26 +674,21 @@ function network_content(&$a, $update = 0, $load = false) {
else {
$items = array();
}
+
+ if($parents_str)
+ $update_unseen = ' AND parent IN ( ' . dbesc($parents_str) . ' )';
+
}
// logger('items: ' . count($items));
- // We aren't going to try and figure out at the item, group, and page
- // level which items you've seen and which you haven't. If you're looking
- // at the top level network page just mark everything seen.
-
- if((! $group) && (! $cid) && (! $star)) {
+ if($update_unseen)
$r = q("UPDATE `item` SET item_flags = ( item_flags ^ %d)
- WHERE (item_flags & %d) AND `uid` = %d",
+ WHERE (item_flags & %d) AND `uid` = %d $update_unseen ",
intval(ITEM_UNSEEN),
intval(ITEM_UNSEEN),
intval(local_user())
);
- }
-
-// fixme
- // Set this so that the conversation function can find out contact info for our wall-wall items
- $a->page_contact = $a->contact;
$mode = (($nouveau) ? 'network-new' : 'network');