eqmac-magelo/help.php
2015-10-04 19:53:12 -07:00

54 lines
No EOL
1.6 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)
*
* September 28, 2014 - Maudigan
* added code to monitor database performance
***************************************************************************/
define('INCHARBROWSER', true);
include_once("include/config.php");
include_once("include/language.php");
include_once("include/functions.php");
include_once("include/global.php");
//drop page
$d_title = " - ".$language['PAGE_TITLES_HELP'];
include("include/header.php");
$template->set_filenames(array(
'help' => 'help_body.tpl')
);
$template->assign_vars(array(
'TITLE' => $mytitle,
'VERSION' => $version,
'L_VERSION' => $language['HELP_VERSION'],
'L_BY' => $language['HELP_BY'],
'L_HELP_TEXT' => $language['HELP_TEXT'],
'L_HELP' => $language['HELP_HELP'])
);
$template->pparse('help');
$template->destroy;
//added to monitor database performance 9/28/2014
if (defined('DB_PERFORMANCE')) print dbp_dump_buffer('query');
include("include/footer.php");
?>