diff --git a/view/theme/frio/php/default.php b/view/theme/frio/php/default.php index 87ccf3dc1a..c56f63d9e3 100644 --- a/view/theme/frio/php/default.php +++ b/view/theme/frio/php/default.php @@ -28,6 +28,28 @@ if(x($page,'htmlhead')) echo $page['htmlhead']; } ?> + profile_uid; + if (is_null($uid)) { + $uid = get_theme_uid(); + } + $schema = get_pconfig($uid, 'frio', 'schema'); + if (($schema) && ($schema != '---')) { + if (file_exists('view/theme/frio/schema/'.$schema.'.php')) { + $schemefile = 'view/theme/frio/schema/'.$schema.'.php'; + require_once($schemefile); + } + } else { + $nav_bg = get_pconfig($uid, 'frio', 'nav_bg'); + } + if (!$nav_bg) { + $nav_bg = "#708fa0"; + } + echo ''; + ?> +