aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notify.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-02-03 19:07:01 -0800
committerfriendica <info@friendica.com>2013-02-03 19:07:01 -0800
commit9dcecb6b3704037cb13e8a6350b5df83f6917a40 (patch)
tree7095ac50e1fea699e2d2a003cbfbf4f864846471 /mod/notify.php
parent4ae5445e032aadd918dc75ca71bc6819f05bb2f4 (diff)
downloadvolse-hubzilla-9dcecb6b3704037cb13e8a6350b5df83f6917a40.tar.gz
volse-hubzilla-9dcecb6b3704037cb13e8a6350b5df83f6917a40.tar.bz2
volse-hubzilla-9dcecb6b3704037cb13e8a6350b5df83f6917a40.zip
finish up the "mark all xyz seen" for all known values of xyz
Diffstat (limited to 'mod/notify.php')
-rw-r--r--mod/notify.php13
1 files changed, 2 insertions, 11 deletions
diff --git a/mod/notify.php b/mod/notify.php
index 3157e8ce8..23ba098b7 100644
--- a/mod/notify.php
+++ b/mod/notify.php
@@ -10,7 +10,7 @@ function notify_init(&$a) {
intval(argv(2)),
intval(local_user())
);
- if(count($r)) {
+ if($r) {
q("update notify set seen = 1 where ( link = '%s' or ( parent != 0 and parent = %d and otype = '%s' )) and uid = %d",
dbesc($r[0]['link']),
intval($r[0]['parent']),
@@ -24,15 +24,6 @@ function notify_init(&$a) {
}
- if(argc() > 2 && argv(1) === 'mark' && argv(2) === 'all' ) {
- $r = q("update notify set seen = 1 where uid = %d",
- intval(local_user())
- );
- $j = json_encode(array('result' => ($r) ? 'success' : 'fail'));
- echo $j;
- killme();
- }
-
}
@@ -49,7 +40,7 @@ function notify_content(&$a) {
intval(local_user())
);
- if (count($r) > 0) {
+ if($r) {
foreach ($r as $it) {
$notif_content .= replace_macros($not_tpl,array(
'$item_link' => $a->get_baseurl(true).'/notify/view/'. $it['id'],