aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/www/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'mayor-orig/www/index.php')
-rw-r--r--mayor-orig/www/index.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/mayor-orig/www/index.php b/mayor-orig/www/index.php
deleted file mode 100644
index 6db3d23e..00000000
--- a/mayor-orig/www/index.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-/*
- MaYoR http://www.mayor.hu./
- License: LICENSE.txt
-*/
- @error_reporting(E_ERROR | E_WARNING | E_PARSE);
- require('include/base/config.php');
- require('include/base/mysql.php');
- require('include/base/var.php');
- require('include/base/base.php');
- require('include/base/cache.php');
- require('include/base/str.php');
- require('include/base/log.php');
- require('include/alert/base.php');
- if ( defined('__TESTERRORREPORTER') && __TESTERRORREPORTER===true) require('include/base/error.php');
- require('include/base/rights.php');
- require('include/base/login.php');
- require('include/menu/base.php') ;
- /* --- */
- require('skin/default/base/html/base.phtml');
- if (file_exists("skin/$skin/base/html/alert.phtml")) {
- require("skin/$skin/base/html/alert.phtml");
- } else {
- require('skin/'._DEFAULT_SKIN.'/base/html/alert.phtml');
- }
- if (file_exists("skin/$skin/base/html/base.phtml")) {
- require("skin/$skin/base/html/base.phtml");
- } else {
- require('skin/'._DEFAULT_SKIN.'/base/html/base.phtml');
- }
- html_base($sessionID,$policy,$page,$sub,$f,$lang,$skin,$MENU);
-
-?>