mirror of
https://github.com/e107inc/e107.git
synced 2025-01-31 04:07:55 +01:00
18 lines
688 B
PHP
18 lines
688 B
PHP
<?php
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
// ##### CHAT TABLE -----------------------------------------------------------------------------
|
|
if(!$CHAT_TABLE_START){
|
|
$CHAT_TABLE_START = "";
|
|
}
|
|
if(!$CHAT_TABLE){
|
|
$CHAT_TABLE = "<div class='spacer'>\n<div class='indent'>\n<span class='defaulttext'><img src='".THEME."images/bullet2.gif' alt='bullet' /> \n<b>{CHAT_TABLE_NICK}</b></span>\n<span class='smalltext'>".CHATBOX_L22." {CHAT_TABLE_DATESTAMP}</span><br />\n<div class='spacer'>{CHAT_TABLE_MESSAGE}</div>\n</div>\n</div>\n";
|
|
}
|
|
if(!$CHAT_TABLE_END){
|
|
$CHAT_TABLE_END = "";
|
|
}
|
|
// ##### ------------------------------------------------------------------------------------------
|
|
|
|
|
|
?>
|