diff --git a/.gitignore b/.gitignore index 218b1ed4..8a247dc6 100755 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/CHANGES.md b/CHANGES.md index be6d381b..e952eae0 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 : diff --git a/core/class/template.class.php b/core/class/template.class.php index 2cb85bab..f7384a10 100644 --- a/core/class/template.class.php +++ b/core/class/template.class.php @@ -64,7 +64,7 @@ class template { $html = '
'; // Label $html .= self::label($attributes['id'], - '' . template::ico('plus') . ' en chiffres ?', [ + '' . template::ico('plus') . ' en chiffres ?', [ 'help' => $attributes['help'] ]); // Notice diff --git a/core/module/user/user.php b/core/module/user/user.php index 1373c40b..af7e0fd4 100644 --- a/core/module/user/user.php +++ b/core/module/user/user.php @@ -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 ]); }