Closed vladsavchuk closed 5 years ago
Suggest changing ifgt to ifge in sidebar.html:
ifgt
ifge
<~admin80_menu ifgt="SESSION[access_level]" value="80" inline>
<~admin80_menu ifge="SESSION[access_level]" value="80" inline>
Because it's natural to count by tens. Consider the following:
To display manager menu, I have to <~admin80_menu ifgt="SESSION[access_level]" value="79" inline>
<~admin80_menu ifgt="SESSION[access_level]" value="79" inline>
that doesn't align with having access_level value of 80 in tag name <~admin80 and comparison value of 79.
<~admin80
Fixed some time ago
Suggest changing
ifgt
toifge
in sidebar.html:old
<~admin80_menu ifgt="SESSION[access_level]" value="80" inline>
new
<~admin80_menu ifge="SESSION[access_level]" value="80" inline>
Because it's natural to count by tens. Consider the following:
To display manager menu, I have to
<~admin80_menu ifgt="SESSION[access_level]" value="79" inline>
that doesn't align with having access_level value of 80 in tag name
<~admin80
and comparison value of 79.