From 4e2f4ead59582b93676e71fa8cd59ba6936208f5 Mon Sep 17 00:00:00 2001 From: fuzzykitten Date: Sun, 23 Feb 2025 17:21:07 -0500 Subject: [PATCH] rolled back change for redirection in desktop page --- srv/index.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/srv/index.php b/srv/index.php index f00dcca..551b3b3 100644 --- a/srv/index.php +++ b/srv/index.php @@ -94,12 +94,9 @@ function answer_redirect($sub, $css) header( "refresh:3;url=/s/$sub/$css" ); // we wait 3 seconds with the redirection $html_string = 'wait for it...' - . '

' - . '

' - . '
' - . 'Redirection in about 3 secs.' - . ' If that does not work, go' - . " back.
"; + . '

Redirection in about 3 secs.' + . ' If that does not work, go ' + . "back."; echo "$html_string"; }