From 3d2ec0448476d1859a153d9cccc2ee093ebaddef Mon Sep 17 00:00:00 2001 From: Mary Evans Date: Tue, 26 Mar 2013 01:01:25 +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 544c792c706..e0aa6365185 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