From 80c7eef3ecd9d53b657bf0854efaf01bc62fb199 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Mon, 22 Mar 2021 09:50:54 +0100 Subject: [PATCH] Use system-independent line newlines --- feiertage.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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"; } ?>