From e84840d33fc04d17285ec1e5690afdf4e3aee077 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Mon, 7 Jun 2021 19:34:36 +0200 Subject: [PATCH] =?UTF-8?q?d=C3=A9placer=20gestion=20des=20users=20dans=20?= =?UTF-8?q?la=20barre=20admin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core.php b/core/core.php index bf67c4b6..26951238 100755 --- a/core/core.php +++ b/core/core.php @@ -3163,7 +3163,6 @@ class layout extends common { $rightItems .= '
  • ' . template::ico('folder') . '
  • '; } if($this->getUser('group') >= self::GROUP_ADMIN) { - $rightItems .= '
  • ' . template::ico('users') . '
  • '; $rightItems .= '
  • ' . template::ico('brush') . '
  • '; if ($this->getData(['config', 'i18n']) === true) { $rightItems .= '
  • ' . template::ico('flag') . '
  • '; @@ -3185,6 +3184,7 @@ class layout extends common { $this->getData(['config','autoUpdate']) === true ) { $rightItems .= '
  • ' . template::ico('update colorRed') . '
  • '; } + $rightItems .= '
  • ' . template::ico('users') . '
  • '; } $rightItems .= '
  • ' . template::ico('user', 'right') . '' . $this->getUser('firstname') . ' ' . $this->getUser('lastname') . '
  • '; $rightItems .= '
  • ' . template::ico('logout') . '
  • ';