mirror of
https://github.com/EQMacEmu/magelo
synced 2026-08-21 00:26:05 -04:00
52 lines
1.5 KiB
PHP
52 lines
1.5 KiB
PHP
<?php
|
|
/***************************************************************************
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Portions of this program are derived from publicly licensed software
|
|
* projects including, but not limited to phpBB, Magelo Clone,
|
|
* EQEmulator, EQEditor, and Allakhazam Clone.
|
|
*
|
|
* Author:
|
|
* Maudigan(Airwalking)
|
|
*
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
|
|
if ( !defined('INCHARBROWSER') )
|
|
{
|
|
die("Hacking attempt");
|
|
}
|
|
include("config.php");
|
|
|
|
$template->set_filenames(array(
|
|
'header' => 'header_body.tpl')
|
|
);
|
|
|
|
$template->assign_vars(array(
|
|
'TLP' => $tlp ? "checked" : "",
|
|
'TITLE' => $mytitle,
|
|
'SUBTITLE' => $d_title,
|
|
'VERSION' => $version,
|
|
'ADVERTISEMENT' => $adscript,
|
|
'L_GUILD' => $language['HEADER_GUILD'],
|
|
'L_NAME' => $language ['HEADER_NAME'],
|
|
'L_SETTINGS' => $language['HEADER_SETTINGS'],
|
|
'L_BAZAAR' => $language['HEADER_BAZAAR'],
|
|
'L_HOME' => $language['HEADER_HOME'],
|
|
'L_CHARMOVE' => $language['HEADER_CHARMOVE'],
|
|
'L_SIGBUILD' => $language['HEADER_SIGBUILD'],
|
|
'L_REPORT_ERRORS' => $language['HEADER_REPORT_ERRORS'],
|
|
'L_HELP' => $language ['HEADER_HELP'])
|
|
);
|
|
|
|
$template->pparse('header');
|
|
|
|
$template->destroy;
|
|
|
|
?>
|