aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-04-16 19:59:12 -0700
committerfriendica <info@friendica.com>2013-04-16 19:59:12 -0700
commit23f897b8aedac8a99aa81ac7799ec67ca196d407 (patch)
tree18ba38dfdc1e6e574cc92a81a107c4e38c1a2b84
parent2217a3033da8779722b007faf8d1a92848846fcc (diff)
downloadvolse-hubzilla-23f897b8aedac8a99aa81ac7799ec67ca196d407.tar.gz
volse-hubzilla-23f897b8aedac8a99aa81ac7799ec67ca196d407.tar.bz2
volse-hubzilla-23f897b8aedac8a99aa81ac7799ec67ca196d407.zip
fix marking events seen
-rw-r--r--mod/ping.php2
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;