diff options
author | Himbeer <himbeer@disroot.org> | 2024-09-22 14:48:50 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2024-09-22 14:48:50 +0200 |
commit | 714f40433420905f963e527962f08c0018532262 (patch) | |
tree | ec23768daafda3f348c9080c5f56faba0432dbb9 | |
parent | 08edbd47746856420606e72881ae4322a0e4da2e (diff) |
v1: Fix code cracking game redirecting to inexistent file
-rw-r--r-- | static/v1/codeknacker.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/v1/codeknacker.html b/static/v1/codeknacker.html index aa0fa8a..f950619 100644 --- a/static/v1/codeknacker.html +++ b/static/v1/codeknacker.html @@ -96,7 +96,7 @@ document.getElementById("ausgabe").innerHTML=""; } } function stop() { -document.location.href="index.php"; +document.location.href="/md/index.md"; } function outputting() { document.getElementById("ausgabe").innerHTML=testing; |