merge 10302

This commit is contained in:
Fred Tempez 2020-10-03 14:14:02 +02:00
parent f8430c9745
commit b676ed401e
1 changed files with 2 additions and 2 deletions

View File

@ -512,9 +512,9 @@ class blog extends common {
if(
$this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')
//AND $this->getInput('blogArticlecaptcha', helper::FILTER_INT) !== $this->getInput('blogArticlecaptchaFirstNumber', helper::FILTER_INT) + $this->getInput('blogArticlecaptchaSecondNumber', helper::FILTER_INT))
AND password_verify($this->getInput('blogArticlecaptcha', helper::FILTER_INT), $this->getInput('blogArticlecaptchaResult') ) === false )
AND password_verify($this->getInput('blogArticleCapcha', helper::FILTER_INT), $this->getInput('blogArticleCapchaResult') ) === false )
{
self::$inputNotices['blogArticlecaptcha'] = 'Incorrect';
self::$inputNotices['blogArticleCapcha'] = 'Incorrect';
}
// Crée le commentaire
$commentId = helper::increment(uniqid(), $this->getData(['module', $this->getUrl(0), $this->getUrl(1), 'comment']));