diff options
author | friendica <info@friendica.com> | 2012-02-26 14:49:56 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-26 14:49:56 -0800 |
commit | 6ddd444afde33337235eab3aa9d6d1fe12bcb7a4 (patch) | |
tree | 9a8ed6282b805732251d254cadef124c90c85727 /mod/ping.php | |
parent | b79380f906731ed1aa4dfa540dcf297fe253c904 (diff) | |
parent | 4b1de0f538e6d3f48e2a4d1e82522aced6b08129 (diff) | |
download | volse-hubzilla-6ddd444afde33337235eab3aa9d6d1fe12bcb7a4.tar.gz volse-hubzilla-6ddd444afde33337235eab3aa9d6d1fe12bcb7a4.tar.bz2 volse-hubzilla-6ddd444afde33337235eab3aa9d6d1fe12bcb7a4.zip |
Merge pull request #49 from CatoTH/master
Bugfix for del_config
Diffstat (limited to 'mod/ping.php')
-rw-r--r-- | mod/ping.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/ping.php b/mod/ping.php index 0f6f0a9d6..7380ff7d0 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -26,9 +26,10 @@ function ping_init(&$a) { $dislikes = array(); $friends = array(); $posts = array(); - + $home = 0; + $network = 0; - $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`, + $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`wall`, `item`.`author-name`, `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object`, `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink` FROM `item` INNER JOIN `item` as `pitem` ON `pitem`.`id`=`item`.`parent` |