forked from ZwiiCMS-Team/ZwiiCMS
Merge branch 'dev' into blog_v3
This commit is contained in:
commit
0d7b674e0f
@ -17,6 +17,8 @@
|
||||
## version 10.2.04
|
||||
- Mise à jour :
|
||||
- Flatpickr 4.6.3
|
||||
- Correction :
|
||||
- Connexion avec un compte inexistant, notification incorrecte.
|
||||
- Modifications :
|
||||
- Position de l'icône d'ouverture et de fermeture des blocs.
|
||||
- Thème administration, bouton standard couleur du texte au survol.
|
||||
|
@ -398,6 +398,11 @@ class user extends common {
|
||||
$this->getData(['config', 'maintenance'])
|
||||
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([
|
||||
'notification' => 'Seul un administrateur peut se connecter lors d\'une maintenance',
|
||||
'redirect' => helper::baseUrl(),
|
||||
|
Loading…
Reference in New Issue
Block a user