From e173130ca8ea58b8781fe8945d8d89ca8de8a86a Mon Sep 17 00:00:00 2001 From: IgorA100 Date: Fri, 11 Jul 2025 12:42:29 +0300 Subject: [PATCH] Fix: For the left menu, we create a normal, not collapsed NavBarHTML (functions.php) Closed #4351 --- web/skins/classic/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/skins/classic/includes/functions.php b/web/skins/classic/includes/functions.php index a2eedfd5f..7635bb4b7 100644 --- a/web/skins/classic/includes/functions.php +++ b/web/skins/classic/includes/functions.php @@ -380,7 +380,7 @@ function getNavBarHTML() { ob_start(); - if ( $navbar_type == 'normal' ) { + if ( $navbar_type == 'normal' || $navbar_type == 'left') { echo getNormalNavBarHTML($running, $user, $bandwidth_options, $view, $skin); } else { echo getCollapsedNavBarHTML($running, $user, $bandwidth_options, $view, $skin);