Umbau der Statistik Ausgabe (each enfernt)

Optimierungen
This commit is contained in:
Gregor Schulte
2021-11-29 15:23:19 +01:00
parent b303dd00d6
commit c464f9e3a3
18 changed files with 580 additions and 545 deletions

View File

@@ -1,5 +1,5 @@
<?php
define('PICONTROL', true);
const PICONTROL = true;
$doNotCheckForAuthentification = true;
(include_once realpath(dirname(__FILE__)).'/resources/init.php') or die('Error: 0x0000');
@@ -65,14 +65,14 @@ try
else
include_once CONTENT_PATH.'overview.php';
}
if ($tpl->tplDraw === false)
$tpl->draw();
}
catch(Exception $e)
{
$errorHandler[] = 'Fehler [TPL]: '.$e->getFile().':'.$e->getLine().' => '.$e->getMessage();
echo '<!DOCTYPE HTML>
<html>
<head>
@@ -91,4 +91,4 @@ catch(Exception $e)
</body>
</html>';
}
?>
?>