diff options
author | friendica <info@friendica.com> | 2013-04-16 19:59:12 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-04-16 19:59:12 -0700 |
commit | 23f897b8aedac8a99aa81ac7799ec67ca196d407 (patch) | |
tree | 18ba38dfdc1e6e574cc92a81a107c4e38c1a2b84 /mod/ping.php | |
parent | 2217a3033da8779722b007faf8d1a92848846fcc (diff) | |
download | volse-hubzilla-23f897b8aedac8a99aa81ac7799ec67ca196d407.tar.gz volse-hubzilla-23f897b8aedac8a99aa81ac7799ec67ca196d407.tar.bz2 volse-hubzilla-23f897b8aedac8a99aa81ac7799ec67ca196d407.zip |
fix marking events seen
Diffstat (limited to 'mod/ping.php')
-rw-r--r-- | mod/ping.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/ping.php b/mod/ping.php index 7ae99d44c..76d84d0e4 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -75,7 +75,7 @@ function ping_init(&$a) { ); break; case 'all_events': - $r = q("update event set ignore = 1 where ignore = 0 and uid = %d", + $r = q("update event set `ignore` = 1 where `ignore` = 0 and uid = %d", intval(local_user()) ); break; |