diff options
author | friendica <info@friendica.com> | 2014-04-06 03:47:53 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-04-06 03:47:53 -0700 |
commit | 64dfe3ab64a7f39c2c88d141a7d8a8b9d60756ff (patch) | |
tree | d7d10dfec58c11ee8b44feb2141b971c36c38532 /mod/events.php | |
parent | ad60e2c566930409d853517ca9392f169fc8e747 (diff) | |
download | volse-hubzilla-64dfe3ab64a7f39c2c88d141a7d8a8b9d60756ff.tar.gz volse-hubzilla-64dfe3ab64a7f39c2c88d141a7d8a8b9d60756ff.tar.bz2 volse-hubzilla-64dfe3ab64a7f39c2c88d141a7d8a8b9d60756ff.zip |
issue #395, item 2
Diffstat (limited to 'mod/events.php')
-rwxr-xr-x | mod/events.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/events.php b/mod/events.php index 2a6067e65..d243f61ba 100755 --- a/mod/events.php +++ b/mod/events.php @@ -163,7 +163,10 @@ function events_content(&$a) { $o =""; // tabs - $tabs = profile_tabs($a, True); + + $channel = $a->get_channel(); + + $tabs = profile_tabs($a, True, $channel['channel_address']); |