Merge branch 'dev' into blog_v3
This commit is contained in:
commit
0d7b674e0f
@ -17,6 +17,8 @@
|
|||||||
## version 10.2.04
|
## version 10.2.04
|
||||||
- Mise à jour :
|
- Mise à jour :
|
||||||
- Flatpickr 4.6.3
|
- Flatpickr 4.6.3
|
||||||
|
- Correction :
|
||||||
|
- Connexion avec un compte inexistant, notification incorrecte.
|
||||||
- Modifications :
|
- Modifications :
|
||||||
- Position de l'icône d'ouverture et de fermeture des blocs.
|
- Position de l'icône d'ouverture et de fermeture des blocs.
|
||||||
- Thème administration, bouton standard couleur du texte au survol.
|
- Thème administration, bouton standard couleur du texte au survol.
|
||||||
|
@ -398,6 +398,11 @@ class user extends common {
|
|||||||
$this->getData(['config', 'maintenance'])
|
$this->getData(['config', 'maintenance'])
|
||||||
AND $this->getData(['user', $userId, 'group']) < self::GROUP_ADMIN
|
AND $this->getData(['user', $userId, 'group']) < self::GROUP_ADMIN
|
||||||
) {
|
) {
|
||||||
|
// Verrouillage des IP
|
||||||
|
$ipBlackList = helper::arrayCollumn($this->getData(['blacklist']), 'ip');
|
||||||
|
if ( $this->getData(['blacklist',$userId,'connectFail']) >= $this->getData(['config', 'connect', 'attempt'])
|
||||||
|
AND in_array($this->getData(['blacklist',$userId,'ip']),$ipBlackList) ) {
|
||||||
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
'notification' => 'Seul un administrateur peut se connecter lors d\'une maintenance',
|
'notification' => 'Seul un administrateur peut se connecter lors d\'une maintenance',
|
||||||
'redirect' => helper::baseUrl(),
|
'redirect' => helper::baseUrl(),
|
||||||
|
Loading…
Reference in New Issue
Block a user