renamed index.inc to autoload.inc to match standarts

This commit is contained in:
Ulf Gebhardt 2019-08-25 20:14:40 +02:00
parent 4e1f516669
commit 72624c2c4a
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD
5 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
<?php
require_once 'index.inc';
require_once 'autoload.inc';
echo \SYSTEM\API\api::run(\SYSTEM\API\verify::class,api_wecker_manufaktur::class,array_merge($_POST,$_GET));
new \SYSTEM\LOG\COUNTER("API was called sucessfully.");

View File

@ -1,5 +1,5 @@
<?php
include 'index.inc';
include 'autoload.inc';
echo \SYSTEM\API\api::run('\SYSTEM\API\verify', page_wecker_manufaktur::class, array_merge($_POST,$_GET), 1, false, true);
new \SYSTEM\LOG\COUNTER("Page was called sucessfully.");

View File

@ -1,4 +1,4 @@
<?php
include 'index.inc';
include 'autoload.inc';
echo (new \SYSTEM\SAI\sai_gui())->html();

View File

@ -1,4 +1,4 @@
<?php
include 'index.inc';
include 'autoload.inc';
echo \SYSTEM\SQL\setup::install();