diff options
author | Friendika <info@friendika.com> | 2011-10-24 22:07:42 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-24 22:07:42 -0700 |
commit | 4ea6f86b2089e0468139890a42cb5157f804c26e (patch) | |
tree | 48cf8ac7b03188cff73fff6e4447db75dba73873 /mod | |
parent | 318f17940873bb6857dcaaca362194676c1f5dc7 (diff) | |
download | volse-hubzilla-4ea6f86b2089e0468139890a42cb5157f804c26e.tar.gz volse-hubzilla-4ea6f86b2089e0468139890a42cb5157f804c26e.tar.bz2 volse-hubzilla-4ea6f86b2089e0468139890a42cb5157f804c26e.zip |
bug #166
Diffstat (limited to 'mod')
-rw-r--r-- | mod/network.php | 4 | ||||
-rw-r--r-- | mod/profile.php | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/mod/network.php b/mod/network.php index 491603f35..9fed8592e 100644 --- a/mod/network.php +++ b/mod/network.php @@ -328,8 +328,10 @@ function network_content(&$a, $update = 0) { } } - if((! $group) && (! $cid) && (! $update)) + if((! $group) && (! $cid) && (! $update)) { $o .= get_birthdays(); + $o .= get_events(); + } $sql_extra2 = (($nouveau) ? '' : " AND `item`.`parent` = `item`.`id` "); diff --git a/mod/profile.php b/mod/profile.php index a453f72f1..6d67ab74b 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -223,8 +223,10 @@ function profile_content(&$a, $update = 0) { ); } - if($is_owner && ! $update) + if($is_owner && ! $update) { $o .= get_birthdays(); + $o .= get_events(); + } $o .= conversation($a,$r,'profile',$update); |