This commit is contained in:
2015-08-16 23:47:00 +02:00
parent d231658b60
commit 475b7372ea
7 changed files with 41 additions and 18 deletions

View File

@@ -1,7 +1,8 @@
<?php
function getPage($sPath, $asVars, $bSavePage=false)
function getPage($sPath, $asVars)
{
$bSavePage = Settings::DEBUG;
if($bSavePage)
{
$asFileIds = array_filter($asVars);

6
inc/settings.php Normal file
View File

@@ -0,0 +1,6 @@
<?php
class Settings
{
const DEBUG = false;
}