-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.php
35 lines (33 loc) · 1.18 KB
/
index.php
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
<?php
/***************************************************************************
* index.php
* -------------------
* Project Owner : OpenWoW CMS (www.openwow.com)
* Copyright : (c) www.openwow.com, 2010
* Credits : Based on work done by AXE and Maverfax
* License : GPLv3
*****************************************************************************/
/*
|---------------------------------------------------------------
| PHP ERROR REPORTING LEVEL
|---------------------------------------------------------------
|
| By default Web-WoW runs with error reporting set to ALL.
| For security reasons you are encouraged to change this when
| your site goes live. For more info visit:
| http://www.php.net/error_reporting
|
*/
error_reporting(E_ALL);
/* Will not show NOTICE errors when caching, do not change. */
$error_reporting_cache='E_ALL';
/*
|---------------------------------------------------------------
| INITIALIZE WEB-WOW
|---------------------------------------------------------------
|
| Here we go!
|
*/
require_once './engine/init.php';
$Html->_construct();