From b3386b1d4ca45e4e0e872f99ecfb8a8cce48c831 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 6 Oct 2016 18:18:52 -0600 Subject: [PATCH] Update template.php --- themes/default/template.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/themes/default/template.php b/themes/default/template.php index 93cf5e1cde..320086d29b 100644 --- a/themes/default/template.php +++ b/themes/default/template.php @@ -543,10 +543,11 @@ switch ($menu_style) { case 'inline': $logo_align = ($_SESSION['theme']['logo_align']['text'] != '') ? $_SESSION['theme']['logo_align']['text'] : 'left'; + $logo_style = ($_SESSION['theme']['logo_style']['text'] != '') ? $_SESSION['theme']['logo_style']['text'] : ''; echo str_replace("center", $logo_align, $open_container); if ($_SERVER['PHP_SELF'] != PROJECT_PATH."/core/install/install.php") { $logo = ($_SESSION['theme']['logo']['text'] != '') ? $_SESSION['theme']['logo']['text'] : PROJECT_PATH."/themes/default/images/logo.png"; - echo ""; + echo ""; } show_menu($menu_array, $menu_style, $menu_position);