Move accessible files to public folders and adjust paths.

This commit is contained in:
2023-12-29 13:34:49 +01:00
parent e090fdc63d
commit 73073186c0
65 changed files with 202 additions and 450 deletions

View File

@@ -2,16 +2,15 @@
<?php
if (!isset($_GET['t'])) {
include "inhalte/kal/standard.php";
include __DIR__ . '/inhalte/kal/standard.php';
} else {
if ('saison' == $_GET['t']) {
include "inhalte/kal/saison.php";
include __DIR__ . '/inhalte/kal/saison.php';
} elseif ('gaby' == $_GET['t']) {
include "inhalte/kal/gaby.php";
include __DIR__ . '/inhalte/kal/gaby.php';
} elseif ('amelie' == $_GET['t']) {
include "inhalte/kal/amelie.php";
include __DIR__ . '/inhalte/kal/amelie.php';
} else {
include "inhalte/kal/standard.php";
include __DIR__ . '/inhalte/kal/standard.php.php';
}
}
}