From 3d6d2447286cbe10646ca31c3e77302526edfdbe Mon Sep 17 00:00:00 2001 From: toyomoyo Date: Thu, 15 Feb 2007 03:21:05 +0000 Subject: [PATCH] fix for MDL-5829, blocks on blog page can not be minimized --- blog/footer.php | 2 +- blog/header.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/blog/footer.php b/blog/footer.php index 85f72f698c..046e32a697 100644 --- a/blog/footer.php +++ b/blog/footer.php @@ -7,7 +7,7 @@ print ''."\n"; // The right column if (blocks_have_content($pageblocks, BLOCK_POS_RIGHT) || $editing) { - echo ''; + echo ''; echo ''."\n"; blocks_print_group($PAGE, $pageblocks, BLOCK_POS_RIGHT); print_spacer(1, 120, true); diff --git a/blog/header.php b/blog/header.php index 71e4402c8b..f99ec1cd13 100755 --- a/blog/header.php +++ b/blog/header.php @@ -214,12 +214,12 @@ require_once($CFG->dirroot .'/user/tabs.php'); /// Layout the whole page as three big columns. -print '' . "\n"; +print '
' . "\n"; print '' . "\n"; /// The left column ... if (blocks_have_content($pageblocks, BLOCK_POS_LEFT) || $editing) { - print '
' . "\n"; + print '' . "\n"; print '' . "\n"; blocks_print_group($PAGE, $pageblocks, BLOCK_POS_LEFT); print '' . "\n"; -- 2.39.5