Remove useless debug messages

lainchan was a mistake
This commit is contained in:
discomrade 2022-01-17 13:08:57 -01:00
parent c388081617
commit 2f64d7edff
5 changed files with 0 additions and 40 deletions

View file

@ -357,7 +357,6 @@ function define_groups() {
function create_antibot($board, $thread = null) {
require_once dirname(__FILE__) . '/anti-bot.php';
print_err("Create Antibot.");
return _create_antibot($board, $thread);
}
@ -1624,7 +1623,6 @@ function checkSpam(array $extra_salt = array()) {
// Iterate through each input
foreach ($inputs as $name => $value) {
print_err("-> " . $name . ' : ' . $value);
$_hash .= $name . '=' . $value;
}
@ -1635,7 +1633,6 @@ function checkSpam(array $extra_salt = array()) {
$_hash = sha1($_hash . $extra_salt);
if ($hash != $_hash) {
print_err("Hash mismatch");
return true;
}