bug menu fixe
This commit is contained in:
parent
2404142d9c
commit
7229473a22
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## version 10.3.01
|
||||
- Corrections :
|
||||
- Filtrage des pages affichées dans la configuration et initialisation après une mise à jour.
|
||||
- Erreur de position du menu fixe en haut de page
|
||||
|
||||
## version 10.3.00
|
||||
- Corrections :
|
||||
- Bloquage de l'incrémentation de l'id de page lorsque deux pages ont le même nom.
|
||||
|
@ -32,10 +32,14 @@
|
||||
//
|
||||
if($this->getData(['theme', 'menu', 'position']) === 'top' &&
|
||||
$this->getData(['theme', 'menu', 'fixed']) === true) {
|
||||
if ($this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD'))
|
||||
{echo 'id="navfixedlogout"';}
|
||||
elseif ($this->getUrl(0) !== 'theme')
|
||||
{echo 'id="navfixedconnected"';}
|
||||
if ($this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD'))
|
||||
{
|
||||
echo 'id="navfixedconnected"';
|
||||
}
|
||||
else
|
||||
{
|
||||
echo 'id="navfixedlogout"';
|
||||
}
|
||||
}
|
||||
?>
|
||||
>
|
||||
|
Loading…
Reference in New Issue
Block a user