forked from iseeyoucopy/U-232-Trinity-RC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chat.php
23 lines (21 loc) · 888 Bytes
/
chat.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* ------- U-232 Codename Trinity ----------*
* ---------------------------------------------*
* -------- @authors U-232 Team --------------*
* ---------------------------------------------*
* ----- @site https://u-232.duckdns.org/ ----*
* ---------------------------------------------*
* ----- @copyright 2020 U-232 Team ----------*
* ---------------------------------------------*
* ------------ @version V6 ------------------*
*/
require_once(__DIR__.DIRECTORY_SEPARATOR.'include'.DIRECTORY_SEPARATOR.'bittorrent.php');
require_once(INCL_DIR.'user_functions.php');
dbconn();
loggedinorreturn();
$lang = array_merge(load_language('global'), load_language('chat'));
$HTMLOUT = '';
$HTMLOUT .= "<div class='card'><iframe src='/chat/' class='chat-table' name='custom_ajax_chat'></iframe></div>";
echo stdhead("{$lang['chat_chat']}").$HTMLOUT.stdfoot();
?>