1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00
This commit is contained in:
Cameron
2022-04-06 10:15:11 -07:00
parent 9ed3007b71
commit af0a6a5924

View File

@@ -163,9 +163,15 @@ if(isset($eplug_css) && $eplug_css)
if(deftrue('e_MENUMANAGER_ACTIVE')) // load frontend style.css if(deftrue('e_MENUMANAGER_ACTIVE')) // load frontend style.css
{ {
$css_file = $pref['themecss']; if(method_exists('theme', 'css')) // new v2.3.2 theme styles load override.
$e_js->themeCSS($css_file); // Test with superhero.css for frontend bootstrap and 'dark' for backend bootstrap. {
e107::callMethod('theme', 'css');
}
else
{
$css_file = $pref['themecss'];
$e_js->themeCSS($css_file); // Test with superhero.css for frontend bootstrap and 'dark' for backend bootstrap.
}
} }
else // backend css. else // backend css.
{ {