From 7b8d8c2a2dbc7acb7fc57a2f0ecc840270907d94 Mon Sep 17 00:00:00 2001 From: William Crandell Date: Mon, 26 Oct 2015 11:22:57 -0400 Subject: [PATCH] chatbox bugfix might cause new bugs checking into this now --- ext/chatbox/main.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ext/chatbox/main.php b/ext/chatbox/main.php index 0f65d31b..1ac474c4 100644 --- a/ext/chatbox/main.php +++ b/ext/chatbox/main.php @@ -14,7 +14,7 @@ class Chatbox extends Extension { // Adds header to enable chatbox $root = get_base_href(); - $yPath = make_http("") . "/ext/chatbox/"; + $yPath = make_http( $root . "/ext/chatbox/"); $page->add_html_header(" @@ -27,10 +27,9 @@ class Chatbox extends Extension { ", 500); - // loads the chatbox at the set location + // loads the chatbox at the set location $html = "
"; $chatblock = new Block("Chatbox", $html, "main", 97); $page->add_block($chatblock); } } -