14 lines
310 B
PHP
14 lines
310 B
PHP
<?php
|
|
/*
|
|
* @package AJAX_Chat
|
|
* @author Sebastian Tschan
|
|
* @copyright (c) Sebastian Tschan
|
|
* @license GNU Affero General Public License
|
|
* @link https://blueimp.net/ajax/
|
|
*/
|
|
|
|
// Include Class libraries:
|
|
require_once __DIR__ . '/../ajaxchat.php';
|
|
|
|
// Initialize the chat:
|
|
$ajaxChat = new CustomAJAXChat();
|