aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profile.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-05-20 19:28:48 -0700
committerFriendika <info@friendika.com>2011-05-20 19:28:48 -0700
commit22cf6b3fe681af22b23de48610cb4801b742b04b (patch)
tree865e8135c9b5e118ed5bb65cb79c438121952956 /mod/profile.php
parentdb60d6d78f725d7d7ea40ff2ebe3f35df442e33a (diff)
downloadvolse-hubzilla-22cf6b3fe681af22b23de48610cb4801b742b04b.tar.gz
volse-hubzilla-22cf6b3fe681af22b23de48610cb4801b742b04b.tar.bz2
volse-hubzilla-22cf6b3fe681af22b23de48610cb4801b742b04b.zip
'mark seen' not getting all msgs on profile page
Diffstat (limited to 'mod/profile.php')
-rw-r--r--mod/profile.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile.php b/mod/profile.php
index 340c96d86..634aec460 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -168,7 +168,7 @@ function profile_content(&$a, $update = 0) {
// Oh - while we're here... reset the Unseen messages
$r = q("UPDATE `item` SET `unseen` = 0
- WHERE `type` != 'remote' AND `unseen` = 1 AND `uid` = %d",
+ WHERE `wall` = 1 AND `unseen` = 1 AND `uid` = %d",
intval($_SESSION['uid'])
);