rolled back change for redirection in desktop page

main
fuzzykitten 2025-02-23 17:21:07 -05:00
parent e25f6d1ac8
commit 4e2f4ead59
1 changed files with 3 additions and 6 deletions

View File

@ -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 = '<title>wait for it...</title></head>'
. '<body><p id="page">'
. '<div class=\'postcontainer\'>'
. '<div></div><div class=\'post\'>'
. 'Redirection in about 3 secs.'
. ' If that does not work, go'
. " <a href='/s/$sub'>back</a>.</div></div>";
. '<h1>Redirection in about 3 secs.'
. ' If that does not work, go '
. "<a href='/s/$sub/$css'>back</a>.";
echo "$html_string";
}