Browse Source

Fix typo

Signed-off-by: falkTX <falktx@falktx.com>
redirect
falkTX 5 years ago
parent
commit
cd04278b66
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      paste/index.php

+ 1
- 1
paste/index.php View File

@@ -52,7 +52,7 @@ else if (! empty($_POST["paste_text"]))
$paste_name = htmlspecialchars($_POST["paste_title"]);
$paste_pass = htmlspecialchars($_POST["paste_password"]);

if (sha256($paste_pass) != "fc41cad9d74d2529996dd7118537cd2d4b288f3d9737caa45c0f05f0f0c088c0") {
if (hash('sha256', $paste_pass) != "fc41cad9d74d2529996dd7118537cd2d4b288f3d9737caa45c0f05f0f0c088c0") {
die("This pastebin is now protected with a password due to users abusing it for copyright infringement");
}



Loading…
Cancel
Save