diff options
author | alyx <alyx@aleteoryx.me> | 2024-06-22 17:05:07 -0400 |
---|---|---|
committer | alyx <alyx@aleteoryx.me> | 2024-06-22 17:05:07 -0400 |
commit | 0ca0e4908208a49d17e09f3acac2a7d016d873dc (patch) | |
tree | 96c0856cec8b08a42181f0139445b4ad94b9ae8a /visitors.php | |
parent | c1d1869c4080e6354a85c657477795ce2cfec540 (diff) | |
download | visitors_dot_php-0ca0e4908208a49d17e09f3acac2a7d016d873dc.tar.gz visitors_dot_php-0ca0e4908208a49d17e09f3acac2a7d016d873dc.tar.bz2 visitors_dot_php-0ca0e4908208a49d17e09f3acac2a7d016d873dc.zip |
fix debug call
Diffstat (limited to 'visitors.php')
-rw-r--r-- | visitors.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/visitors.php b/visitors.php index 941800a..4073598 100644 --- a/visitors.php +++ b/visitors.php @@ -503,7 +503,7 @@ session_start(['cookie_lifetime' => 1440]); function cleanup_post() { global $config; - error_log(var_dump($_POST, false)); +// error_log(var_export($_POST, true)); if ($config['captcha'] && (@$_SESSION['captcha'] !== htmlentities($_POST['captcha']??''))) { return "Invalid captcha!"; } |