Diverses corrections

This commit is contained in:
Fred Tempez 2020-10-04 12:16:37 +02:00
parent 1901e06957
commit 33aed39f83
7 changed files with 10 additions and 18 deletions

View File

@ -1369,14 +1369,6 @@ th.col12 {
padding-right: 10px;
}
#userLoginCaptcha,
#formcaptcha,
#blogArticlecaptcha {
width: 20%;
text-align: center;
margin: auto;
}
/*
* Couleur des icônes + et -
*/

View File

@ -339,7 +339,7 @@ class user extends common {
//$this->getInput('userLoginCaptcha', helper::FILTER_INT) !== $this->getInput('userLoginCaptchaFirstNumber', helper::FILTER_INT) + $this->getInput('userLoginCaptchaSecondNumber', helper::FILTER_INT))
password_verify($this->getInput('userLoginCaptcha', helper::FILTER_INT), $this->getInput('userLoginCaptchaResult') ) === false )
{
self::$inputNotices['blogArticlecaptcha'] = 'Incorrect';
self::$inputNotices['userLoginCaptcha'] = 'Incorrect';
}
// Lire Id du compte

View File

@ -343,9 +343,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('blogArticleCapcha', helper::FILTER_INT), $this->getInput('blogArticleCapchaResult') ) === false )
AND password_verify($this->getInput('blogArticleCaptcha', helper::FILTER_INT), $this->getInput('blogArticleCaptchaResult') ) === false )
{
self::$inputNotices['blogArticleCapcha'] = 'Incorrect';
self::$inputNotices['blogArticleCaptcha'] = 'Incorrect';
}
// Crée le commentaire
$commentId = helper::increment(uniqid(), $this->getData(['module', $this->getUrl(0), $this->getUrl(1), 'comment']));

View File

@ -77,8 +77,8 @@
]); ?>
<?php if($this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')): ?>
<div class="row">
<div class="col5">
<?php echo template::captcha('blogArticlecaptcha'); ?>
<div class="col6">
<?php echo template::captcha('blogArticleCaptcha'); ?>
</div>
</div>
<?php endif; ?>

View File

@ -77,7 +77,7 @@ class form extends common {
'config',
[
'button' => $this->getInput('formConfigButton'),
'captcha' => $this->getInput('formConfigcaptcha', helper::FILTER_BOOLEAN),
'captcha' => $this->getInput('formConfigCaptcha', helper::FILTER_BOOLEAN),
'group' => $this->getInput('formConfigGroup', helper::FILTER_INT),
'user' => self::$listUsers [$this->getInput('formConfigUser', helper::FILTER_INT)],
'mail' => $this->getInput('formConfigMail') ,
@ -283,9 +283,9 @@ class form extends common {
if(
$this->getData(['module', $this->getUrl(0), 'config', 'captcha'])
// AND $this->getInput('formcaptcha', helper::FILTER_INT) !== $this->getInput('formcaptchaFirstNumber', helper::FILTER_INT) + $this->getInput('formcaptchaSecondNumber', helper::FILTER_INT))
AND password_verify($this->getInput('formcaptcha', helper::FILTER_INT), $this->getInput('formcaptchaResult') ) === false )
AND password_verify($this->getInput('formCaptcha', helper::FILTER_INT), $this->getInput('formCaptchaResult') ) === false )
{
self::$inputNotices['formcaptcha'] = 'Incorrect';
self::$inputNotices['formCaptcha'] = 'Incorrect';
}
// Préparation le contenu du mail

View File

@ -142,7 +142,7 @@
]); ?>
</div>
</div>
<?php echo template::checkbox('formConfigcaptcha', true, 'Valider un captcha afin de soumettre le formulaire.', [
<?php echo template::checkbox('formConfigCaptcha', true, 'Valider un captcha afin de soumettre le formulaire.', [
'checked' => $this->getData(['module', $this->getUrl(0), 'config', 'captcha'])
]); ?>
</div>

View File

@ -46,7 +46,7 @@
<?php if($this->getData(['module', $this->getUrl(0), 'config', 'captcha'])): ?>
<div class="row">
<div class="col5">
<?php echo template::captcha('formcaptcha'); ?>
<?php echo template::captcha('formCaptcha'); ?>
</div>
</div>
<?php endif; ?>