Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:1 to 9 of 9
15: // 1 = server is running SSL | 0 = not running SSL
16: $HasSSL = ($_SERVER['HTTPS']=='on') ? 1 : 0;
=======
24: $domainSSL = ($_SERVER['HTTPS']=='on') ? 'https://'. $_SERVER['SERVER_NAME'] : 'http://'. $_SERVER['SERVER_NAME'];
function Render() {
// First sort the tabs by key
ksort($this->Tabs);
// Now write the Menu
$this->Context->Writer->Add("< div class="SiteContainer">
< a name="pgtop"></a>
< div id="LoadStatus" style="display: none;">Loading...</ div>");
$this->Context->Writer->Add("
< div class="Head">
<!-- < div class="Logo">".agBANNER_TITLE."</ div> -->");
$this->Context->Writer->Write();
// inside this file is the call to include _core.php
<strong style='color:red;'>include("./inc/sitenav.php");</strong>
$this->Context->Writer->Add("
< ul id="MenuForum">");
while (list($Key, $Tab) = each($this->Tabs)) {
$this->Context->Writer->Add($this->FormatTab($Tab["Text"], $Tab["Value"], $Tab["Url"], $Tab["CssClass"], $Tab["Attributes"]));
}
$this->Context->Writer->Add("</ ul>
</ div>
< div class="Body">");
$this->Context->Writer->Write();
}
Notice: Undefined index: HTTPS in /usr/local/apache/htdocs/_php/_core.php on line 16
Notice: Undefined index: HTTPS in /usr/local/apache/htdocs/_php/_core.php on line 24
@$_SERVER["https"]if (array_key_exists('HTTPS', $_SERVER)) {
$HasSSL = ($_SERVER['HTTPS']=='on') ? 1 : 0;
} else {
$HasSSL = 0;
}
1 to 9 of 9