diff options
author | root <root@diekershoff.homeunix.net> | 2011-01-18 11:14:28 +0100 |
---|---|---|
committer | root <root@diekershoff.homeunix.net> | 2011-01-18 11:14:28 +0100 |
commit | 13fa27f7578d292d8d722554ce6211e8e0bc91af (patch) | |
tree | 2377a23718c3406206f03b65aad2a9f5b1eb8b12 /mod/network.php | |
parent | 3323f256c35ceb30a4b2ac1984a2eded672eb33f (diff) | |
parent | 028460a5c1de4833bb1dcfaa945c1292952bf923 (diff) | |
download | volse-hubzilla-13fa27f7578d292d8d722554ce6211e8e0bc91af.tar.gz volse-hubzilla-13fa27f7578d292d8d722554ce6211e8e0bc91af.tar.bz2 volse-hubzilla-13fa27f7578d292d8d722554ce6211e8e0bc91af.zip |
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'mod/network.php')
-rw-r--r-- | mod/network.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/network.php b/mod/network.php index 08607fa18..5073b8a61 100644 --- a/mod/network.php +++ b/mod/network.php @@ -115,6 +115,10 @@ function network_content(&$a, $update = 0) { $o = '<h4>' . t('Group: ') . $r[0]['name'] . '</h4>' . $o; } + if((! $group) && (! $update)) + $o .= get_birthdays(); + + $r = q("SELECT COUNT(*) AS `total` FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id` WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0 |