1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-08 07:36:32 +02:00

Path correction and styling fixes

This commit is contained in:
Cameron
2013-04-27 13:16:08 -07:00
parent 80ec0b9b40
commit f6d863e74e
3 changed files with 7 additions and 6 deletions

View File

@@ -319,7 +319,7 @@ if(!$text = $e107cache->retrieve("nq_chatbox"))
$cbpost = $sql->db_getList();
$text .= "<div id='chatbox-posts-block'>\n";
$text .= $tp->parseTemplate($CHATBOX_TEMPLATE['start'], true, $sc);
$text .= $tp->parseTemplate($CHATBOX_TEMPLATE['start'], false, $sc);
foreach($cbpost as $cb)
{
@@ -327,7 +327,7 @@ if(!$text = $e107cache->retrieve("nq_chatbox"))
$text .= $tp->parseTemplate($CHATBOX_TEMPLATE['item'], false, $sc);
}
$text .= $tp->parseTemplate($CHATBOX_TEMPLATE['end'], true, $sc);
$text .= $tp->parseTemplate($CHATBOX_TEMPLATE['end'], false, $sc);
$text .= "</div>";
}
@@ -348,6 +348,7 @@ if(!$text = $e107cache->retrieve("nq_chatbox"))
$caption = (file_exists(THEME."images/chatbox_menu.png") ? "<img src='".THEME_ABS."images/chatbox_menu.png' alt='' /> ".CHATBOX_L2 : CHATBOX_L2);
if($pref['cb_layer'] == 1)