In blocks_print_group, if we just return if pageblocks are empty, we never get to print the admin block

This commit is contained in:
mjollnir_
2005-03-08 23:24:10 +00:00
parent 9ac6ae7206
commit 3f05218715
+1 -1
View File
@@ -193,7 +193,7 @@ function blocks_have_content(&$pageblocks, $position) {
function blocks_print_group(&$page, &$pageblocks, $position) {
if(empty($pageblocks[$position])) {
return;
$pageblocks[$position] = array();
}
$isediting = $page->user_is_editing();