From 5f73d19ddd43fdf6505b94481698f6cb6d126078 Mon Sep 17 00:00:00 2001 From: Mary Evans Date: Tue, 22 May 2012 16:54:00 +0100 Subject: [PATCH] MDL-33191 theme_magazine: changes to magazine/config.php fixes $THEME->layouts for Base & Standard --- theme/magazine/config.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/theme/magazine/config.php b/theme/magazine/config.php index cc138f2f770..5ed5277cc1b 100644 --- a/theme/magazine/config.php +++ b/theme/magazine/config.php @@ -49,12 +49,13 @@ $THEME->editor_sheets = array('editor'); //////////////////////////////////////////////////// $THEME->layouts = array( + // Most backwards compatible layout without the blocks - this is the layout used by default 'base' => array( 'file' => 'general.php', - 'regions' => array('side-pre', 'side-post'), - 'defaultregion' => 'side-post', + 'regions' => array(), ), - 'general' => array( + // Standard layout with blocks, this is recommended for most pages with general information + 'standard' => array( 'file' => 'general.php', 'regions' => array('side-pre', 'side-post'), 'defaultregion' => 'side-post', -- 2.39.2