insert the empty parser page

This commit is contained in:
Schrolli 2015-04-09 13:34:52 +02:00
parent fef8c4c265
commit b7a5439dd3
3 changed files with 8 additions and 0 deletions

3
www/content.parser.php Normal file
View file

@ -0,0 +1,3 @@
<?php
?>

View file

@ -28,6 +28,11 @@ $db = new Database($dbhost, $dbuser, $dbpassword, $database, 1); //Show Error =
include("content.overview.php");
include("template.overview.php");
}
elseif(isset($_GET['parser']))
{
include("content.parser.php");
include("template.parser.php");
}
else
{
include("content.overview.php");

0
www/template.parser.php Normal file
View file