From b27ccc0cac37129e194fc48702ef378dfa64dbf3 Mon Sep 17 00:00:00 2001 From: Sergey Romaneko Date: Wed, 26 Sep 2012 14:27:05 +0300 Subject: [PATCH] Update plugins/captcha/crypt/cryptographp.fct.php --- plugins/captcha/crypt/cryptographp.fct.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/captcha/crypt/cryptographp.fct.php b/plugins/captcha/crypt/cryptographp.fct.php index 993595a..91d84cd 100644 --- a/plugins/captcha/crypt/cryptographp.fct.php +++ b/plugins/captcha/crypt/cryptographp.fct.php @@ -21,7 +21,7 @@ function dsp_crypt($cfg = 0, $reload = 1) { function chk_crypt($code) { include ($_SESSION['configfile']); $code = addslashes ($code); - $code = str_replace(' ', '', $code); // supprime les espaces saisis par erreur. + $code = str_replace(' ', '', $code); $code = ($difuplow ? $code : strtoupper($code)); switch (strtoupper($cryptsecure)) { case "MD5" : $code = md5($code); break;