diff options
author | marijus <mario@localhost.localdomain> | 2014-02-06 14:56:59 +0100 |
---|---|---|
committer | marijus <mario@localhost.localdomain> | 2014-02-06 14:56:59 +0100 |
commit | a2b311991a90e1c78d30bad5504c18bb2a3c5c2a (patch) | |
tree | 54b5e5dbc7230442a3e1ec894c4a4c385b2d78c7 /mod/chat.php | |
parent | 419e3b5024efec40c98e48c3bf213c4e60d39fae (diff) | |
parent | 7a522be20bd66a0a904dcddf33d53e59aa04a92d (diff) | |
download | volse-hubzilla-a2b311991a90e1c78d30bad5504c18bb2a3c5c2a.tar.gz volse-hubzilla-a2b311991a90e1c78d30bad5504c18bb2a3c5c2a.tar.bz2 volse-hubzilla-a2b311991a90e1c78d30bad5504c18bb2a3c5c2a.zip |
Merge branch 'master' of https://github.com/friendica/red into upstream
Diffstat (limited to 'mod/chat.php')
-rw-r--r-- | mod/chat.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/mod/chat.php b/mod/chat.php index e79973aef..e3725830c 100644 --- a/mod/chat.php +++ b/mod/chat.php @@ -155,6 +155,15 @@ function chat_content(&$a) { require_once('include/widgets.php'); - return widget_chatroom_list(array()); + $o = replace_macros(get_markup_template('chatrooms.tpl'), array( + '$header' => sprintf( t('%1$s\'s Chatrooms'), $a->profile['name']), + '$baseurl' => z_root(), + '$nickname' => $channel['channel_address'], + '$rooms' => widget_chatroom_list(array()), + '$newroom' => t('New Chatroom'), + '$is_owner' => ((local_user() && local_user() == $a->profile['profile_uid']) ? 1 : 0) + )); + + return $o; }
\ No newline at end of file |