From db5cbad673ee8d96a857098a85675aadea6afcaf Mon Sep 17 00:00:00 2001 From: Mary Evans Date: Tue, 26 Mar 2013 00:50:29 +0000 Subject: [PATCH] MDL-38702 theme_mymobile: Replaced missing theme setting to disable CSS Optimiser. The missing setting was a regression casued by MDL-33357. --- theme/mymobile/config.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/theme/mymobile/config.php b/theme/mymobile/config.php index 780428b2ed5..482c8896897 100644 --- a/theme/mymobile/config.php +++ b/theme/mymobile/config.php @@ -163,4 +163,7 @@ $THEME->javascripts = array( // Sets a custom render factory to use with the theme, used when working with custom renderers. $THEME->rendererfactory = 'theme_overridden_renderer_factory'; -$THEME->csspostprocess = 'mymobile_user_settings'; \ No newline at end of file +$THEME->csspostprocess = 'mymobile_user_settings'; + +// Disables CSS Optimiser for MyMobile theme. +$THEME->supportscssoptimisation = false; \ No newline at end of file