-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathhelp.php
More file actions
54 lines (43 loc) · 1.6 KB
/
help.php
File metadata and controls
54 lines (43 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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");
?>