aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/www/index.php
diff options
context:
space:
mode:
authorM.Gergo2018-07-06 11:14:41 +0200
committerM.Gergo2018-07-06 11:14:41 +0200
commit43de9af71f7f4ca5731b94a06d688ae8412ba427 (patch)
tree54835de1dfcda504c02da261f0dc26885aed2e89 /mayor-orig/www/index.php
parent50310b0e4513ee3fcce67351ae61e8fff851130e (diff)
downloadmayor-43de9af71f7f4ca5731b94a06d688ae8412ba427.tar.gz
mayor-43de9af71f7f4ca5731b94a06d688ae8412ba427.zip
2018/Feb/28 -i állapot hozzáadva, mint a módosítások kiindulási állapota
Diffstat (limited to 'mayor-orig/www/index.php')
-rw-r--r--mayor-orig/www/index.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/mayor-orig/www/index.php b/mayor-orig/www/index.php
new file mode 100644
index 00000000..6db3d23e
--- /dev/null
+++ b/mayor-orig/www/index.php
@@ -0,0 +1,33 @@
+<?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);
+
+?>