1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 11:50:30 +02:00

Issue #3104 Library CSS fix for admin area.

This commit is contained in:
Cameron
2018-05-12 10:22:58 -07:00
parent 07d30296dc
commit ac95924374

View File

@@ -165,6 +165,7 @@ echo "<title>".(defined("e_PAGETITLE") ? e_PAGETITLE." - " : (defined("PAGE_NAME
echo "<!-- *CSS* -->\n";
$e_js = e107::getJs();
// Core CSS - XXX awaiting for path changes
if (!isset($no_core_css) || !$no_core_css)
{
@@ -267,9 +268,13 @@ unset($e_headers);
// ################### RENDER CSS
echo "\n<!-- Library CSS -->\n";
$e_js->renderJs('library_css', false, 'css', false);
// Other CSS - from unknown location, different from core/theme/plugin location or backward compatibility
$e_js->renderJs('other_css', false, 'css', false);
echo "\n<!-- footer_other_css -->\n";
echo "\n<!-- footer_other_css -->\n"; // substituted in footer when detected.
// Core CSS
$e_js->renderJs('core_css', false, 'css', false);