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
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ register_module([
}
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>"));
}
});
}