From 839de3f06365e305fb8a516c738c3a64ca428a2d Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sat, 10 Oct 2015 12:51:55 +0100 Subject: [PATCH] Bugfix: Don't hash the closing html tags in action-hash --- modules/action-hash.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/action-hash.php b/modules/action-hash.php index c4eaf95..ea95e19 100644 --- a/modules/action-hash.php +++ b/modules/action-hash.php @@ -15,7 +15,7 @@ register_module([ } else { - exit(page_renderer::render_main("Hashed string", "

" . $_GET["string"] . "" . hash("sha256", $_GET["string"] . "

"))); + exit(page_renderer::render_main("Hashed string", "

" . $_GET["string"] . "" . hash("sha256", $_GET["string"]) . "

")); } }); }