We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52542ea commit e610daaCopy full SHA for e610daa
web/skins/classic/includes/functions.php
@@ -319,10 +319,7 @@ function buildSidebarMenu() {
319
global $view;
320
global $user;
321
if ( $user and $user->Username() ) {
322
- $menuForAuthUser = '
323
- <li class="menu-header"><span> GENERAL </span></li> ' .
324
- renderMenuItems($forLeftBar = true)
325
- ;
+ $menuForAuthUser = renderMenuItems($forLeftBar = true) ;
326
} else { // USER IS NOT AUTHORIZED!
327
$menuForAuthUser = '';
328
}
@@ -388,6 +385,8 @@ function buildSidebarMenu() {
388
385
</a>
389
386
</li>
390
387
';
+ } else if (defined(ZM_SIDEBAR_FOOTER) and ZM_SIDEBAR_FOOTER) {
+ $menu .- ZM_SIDEBAR_FOOTER;
391
392
$menu .= '
393
</ul>
0 commit comments