1
0
Fork 0
mirror of https://github.com/sbrl/Pepperminty-Wiki.git synced 2024-06-01 09:53:02 +00:00

Bugfix: Don't hash the closing html tags in action-hash

This commit is contained in:
Starbeamrainbowlabs 2015-10-10 12:51:55 +01:00
parent 99e1251d5d
commit 839de3f063

View file

@ -15,7 +15,7 @@ register_module([
} }
else else
{ {
exit(page_renderer::render_main("Hashed string", "<p><code>" . $_GET["string"] . "</code> → <code>" . hash("sha256", $_GET["string"] . "</code></p>"))); exit(page_renderer::render_main("Hashed string", "<p><code>" . $_GET["string"] . "</code> → <code>" . hash("sha256", $_GET["string"]) . "</code></p>"));
} }
}); });
} }