--- C:\Apache Webs\drupal\drupal-4.7-modules\controlpanel\controlpanel.module Tue Nov 08 16:04:02 2005 +++ C:\Apache Webs\phpMiX - phpmix.org\public_html\sites\default\modules\controlpanel\controlpanel.module Sun Dec 18 00:24:29 2005 @@ -1,4 +1,6 @@ '; $content .= '' . $menu['items'][$mid]['title'] . ''; - } + } $content .= theme('controlpanel_panel_view', $mid, $block); if (variable_get('controlpanel_build_children' . $block, 0) && (variable_get('controlpanel_child_levels' . $block, 2) > 1) && ($menu_visible[$mid]['children'])) { @@ -81,9 +83,9 @@ } if (variable_get('controlpanel_build_children' . $block, 0) != 0) { $content .= ''; - } + } - If ($theme_page == TRUE) { + if ($theme_page == TRUE) { print theme('page', $content); } else { return $content; @@ -104,27 +106,27 @@ $image_directory = drupal_get_path('module', 'controlpanel') . '/images/' . variable_get('controlpanel_icon_size' . $block, '48x48'); } - $content .= '
'; + $content .= '
'; if (isset($menu_visible[$pid]) && $menu_visible[$pid]['children']) { foreach ($menu_visible[$pid]['children'] as $mid) { $content .= ''; } - $content .= '
'; - return $content; } + $content .= '
'; + return $content; } /** * Build child panel(s) @@ -138,11 +140,11 @@ $content .= ''; $content = theme('controlpanel_child_panel_view', $cid, $depth + 1, $content, $block); } } } - $content .= ''; return $content; } /**