diff options
author | friendica <info@friendica.com> | 2012-03-28 17:51:43 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-28 17:51:43 -0700 |
commit | 3f89adfd62dc433bf75d193b84d4cfb47de3358b (patch) | |
tree | 08839cec212ba57ce95854843a47d203bbead484 /mod/ping.php | |
parent | 77715c0c65b5275f1d1b4b1c4b79bcf62b417c51 (diff) | |
download | volse-hubzilla-3f89adfd62dc433bf75d193b84d4cfb47de3358b.tar.gz volse-hubzilla-3f89adfd62dc433bf75d193b84d4cfb47de3358b.tar.bz2 volse-hubzilla-3f89adfd62dc433bf75d193b84d4cfb47de3358b.zip |
wrong var for notify total
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 23a3f4937..e911aaf1f 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -22,7 +22,7 @@ function ping_init(&$a) { and seen = 0 order by date desc limit 0, 50", intval(local_user()) ); - $sysnotify = $r[0]['total']; + $sysnotify = $t[0]['total']; } else { $z1 = q("select * from notify where uid = %d |