Index: includes/theme.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/theme.inc,v retrieving revision 1.439 diff -u -p -r1.439 theme.inc --- includes/theme.inc 16 Oct 2008 13:50:21 -0000 1.439 +++ includes/theme.inc 11 Oct 2008 07:15:19 -0000 @@ -1799,7 +1799,7 @@ function template_preprocess_page(&$vari // Load all region content assigned via blocks. foreach (array_keys($regions) as $region) { // Prevent left and right regions from rendering blocks when 'show_blocks' == FALSE. - if (!(!$variables['show_blocks'] && ($region == 'left' || $region == 'right'))) { + if ($variables['show_blocks'] || ($region != 'left' && $region != 'right')) { $blocks = theme('blocks', $region); } else {