diff --git a/feiertage.php b/feiertage.php
index 31004a7..e0015bd 100644
--- a/feiertage.php
+++ b/feiertage.php
@@ -317,7 +317,7 @@ if (isset($_GET['jahr'])) {
" . strval($now + $i) . '' . PHP_EOL;
+ echo "\t\t\t\t\t\t' . "\n";
?>
@@ -327,7 +327,7 @@ if (isset($_GET['jahr'])) {
' . htmlentities(Bundesland::GetName($i)) . '' . PHP_EOL;
+ echo "\t\t\t\t\t\t" . '' . "\n";
?>
@@ -345,7 +345,7 @@ if (isset($_GET['jahr'])) {
Feiertag |
' . Bundesland::GetName($i, true) . '' . PHP_EOL;
+ echo "\t\t\t\t\t" . '' . Bundesland::GetName($i, true) . ' | ' . "\n";
?>
@@ -354,7 +354,7 @@ if (isset($_GET['jahr'])) {
for ($i = 0; $i < $tage->Count(); $i++) {
$tag = $tage->GetFeiertag($i);
echo "\t\t\t\t";
- echo '| ' . $tag->GetDatum('d.m.') . ' | ' . htmlentities($tag->GetName()) . ' | ' . PHP_EOL . "\t\t\t\t";
+ echo '' . $tag->GetDatum('d.m.') . ' | ' . htmlentities($tag->GetName()) . ' | ' . "\n\t\t\t\t";
for ($j = 0; $j < Bundesland::Count(); $j++) {
echo '';
if ($tag->IsInBundesland($j))
@@ -363,7 +363,7 @@ if (isset($_GET['jahr'])) {
echo '☆';
echo ' | ';
}
- echo '
' . PHP_EOL;
+ echo '' . "\n";
}
?>