forked from ZwiiCMS-Team/ZwiiCMS
Merge branch 'master' into 10400
This commit is contained in:
commit
93e2dd40e3
6
.gitignore
vendored
6
.gitignore
vendored
@ -36,3 +36,9 @@ site/data/journal.log
|
||||
.DS_Store
|
||||
site/.DS_Store
|
||||
site/file/.DS_Store
|
||||
site/tmp/5f7f5e998762c.png
|
||||
site/tmp/5f7f5e9987628.png
|
||||
site/tmp/5f7f5ea3e983b.png
|
||||
site/tmp/5f7f5ea3e9837.png
|
||||
site/tmp/5f7f5ea20d5eb.png
|
||||
site/tmp/5f7f5ea20d5ee.png
|
||||
|
@ -4,6 +4,7 @@
|
||||
- Modifications :
|
||||
- Module User
|
||||
- Pour les articles de blog et de news, choix de la signature, nom+prenom ; nom+prenom ; id ; pseudo
|
||||
- Importation d'un liste d'utilisateur dans un fichier plat (CSV).
|
||||
- Module Blog :
|
||||
- Texte du commentaire enrichi.
|
||||
- Nombre maximal de caractère par commentaire.
|
||||
@ -11,7 +12,7 @@
|
||||
- Suppression des commentaires en masse.
|
||||
- Limiter l'édition des articles et des commentaires à l'id de l'éditeur
|
||||
- Approbation des commentaires
|
||||
|
||||
|
||||
## version 10.3.02
|
||||
- Corrections :
|
||||
- Icône de pied de page github manquante.
|
||||
@ -19,7 +20,8 @@
|
||||
- Modifications :
|
||||
- Nouvelles images de captcha.
|
||||
- Option de configuration, captcha demandé à la connexion.
|
||||
- Module User : importation d'un liste d'utilisateur dans un fichier plat (CSV).
|
||||
|
||||
- Méthode d'encodage UTF8.
|
||||
|
||||
## version 10.3.01
|
||||
- Corrections :
|
||||
|
@ -64,7 +64,7 @@ class template {
|
||||
$html = '<div class="captcha" id="' . $attributes['id'] . 'Wrapper" class="inputWrapper ' . $attributes['classWrapper'] . '">';
|
||||
// Label
|
||||
$html .= self::label($attributes['id'],
|
||||
'<img src="' . helper::baseUrl(false) . 'site/tmp/' . $firstLetter . '.png" />' . template::ico('plus') . '<img class="captchaNumber" src="' . helper::baseUrl(false) . 'site/tmp/' . $secondLetter . '.png" /> en chiffres ?', [
|
||||
'<img src="' . helper::baseUrl(false) . 'site/tmp/' . $firstLetter . '.png" />' . template::ico('plus') . '<img class="captchaNumber" src="' . helper::baseUrl(false) . 'site/tmp/' . $secondLetter . '.png" /> en chiffres ?', [
|
||||
'help' => $attributes['help']
|
||||
]);
|
||||
// Notice
|
||||
|
@ -367,7 +367,6 @@ class user extends common {
|
||||
// Check la captcha
|
||||
if(
|
||||
$this->getData(['config','connect','captcha'])
|
||||
//$this->getInput('userLoginCaptcha', helper::FILTER_INT) !== $this->getInput('userLoginCaptchaFirstNumber', helper::FILTER_INT) + $this->getInput('userLoginCaptchaSecondNumber', helper::FILTER_INT))
|
||||
AND password_verify($this->getInput('userLoginCaptcha', helper::FILTER_INT), $this->getInput('userLoginCaptchaResult') ) === false )
|
||||
{
|
||||
self::$inputNotices['userLoginCaptcha'] = 'Incorrect';
|
||||
@ -445,6 +444,7 @@ class user extends common {
|
||||
$this->addOutput([
|
||||
'notification' => 'Connexion réussie',
|
||||
'redirect' => helper::baseUrl(),
|
||||
//'redirect' => helper::baseUrl() . str_replace('_', '/', str_replace('__', '#', $this->getUrl(2))),
|
||||
'state' => true
|
||||
]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user