diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-10-17 14:54:27 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-10-17 14:54:27 -0700 |
commit | 1d2797dc1fb51311e2f566ae792ee1dbb03c315c (patch) | |
tree | a9eab658cea2a2425aae70f2b84120f185b56e41 /mod/chat.php | |
parent | 4b984f98193d8f9fad4c89aade378e7df238a708 (diff) | |
download | volse-hubzilla-1d2797dc1fb51311e2f566ae792ee1dbb03c315c.tar.gz volse-hubzilla-1d2797dc1fb51311e2f566ae792ee1dbb03c315c.tar.bz2 volse-hubzilla-1d2797dc1fb51311e2f566ae792ee1dbb03c315c.zip |
bring back chat expiration setting and adjust chat size for our now smaller content region
Diffstat (limited to 'mod/chat.php')
-rw-r--r-- | mod/chat.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/chat.php b/mod/chat.php index ef9089b6f..79a5c050b 100644 --- a/mod/chat.php +++ b/mod/chat.php @@ -59,6 +59,9 @@ function chat_post(&$a) { $arr = $acl->get(); $arr['name'] = $room; + $arr['expire'] = intval($_POST['chat_expire']); + if(intval($arr['expire']) < 0) + $arr['expire'] = 0; chatroom_create($channel,$arr); @@ -204,6 +207,7 @@ function chat_content(&$a) { $o = replace_macros(get_markup_template('chatroom_new.tpl'),array( '$header' => t('New Chatroom'), '$name' => array('room_name',t('Chatroom Name'),'', ''), + '$chat_expire' => array('chat_expire',t('Expiration of chats (minutes)'),120,''), '$permissions' => t('Permissions'), '$acl' => populate_acl($channel_acl,false), '$submit' => t('Submit') |