From 5f3903229ee4305c71554567da31885ecafdac99 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Fri, 7 Aug 2015 08:49:53 -0600 Subject: [PATCH] disable css/js pipelining in the admin #28 --- admin.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/admin.php b/admin.php index 838c78f4..332f98fc 100644 --- a/admin.php +++ b/admin.php @@ -128,6 +128,10 @@ class AdminPlugin extends Plugin // Set original route for the home page. $home = '/' . trim($this->config->get('system.home.alias'), '/'); + // Disable Asset pipelining + $this->config->set('system.assets.css_pipeline', false); + $this->config->set('system.assets.js_pipeline', false); + // set the default if not set before $this->session->expert = $this->session->expert ?: false;