123456789101112131415161718192021222324 |
- <?php
- ///////
- // webirc-client - 2013-2020
- // (C) Chris Dorman, GPL v3 - (C) Microchat devs
- // https://github.com/Pentium44/cwchat
- ///////
- $title = "CWChat"; // Chat title
- $desc = "Chris' Website IRC Chat"; // Chat description
- $server = "127.0.0.1"; // IRC server connected to (for information display panel)
- $port = "1337"; // IRC server port (for information display panel)
- $server_msgcount = "80"; // Number of messages to leave at the end of the server database
- $default_channel = "#theroot";
- $logfile = "irclog.txt";
- ///// NO TOUCHY SECTION /////
- $version = "1.3.0"; // CWChat version
- function doLog($string) {
- file_put_contents($GLOBALS['logfile'], $string . "\r\n", FILE_APPEND);
- }
- ?>
|