=== modified file 'modules/controlpanel/controlpanel.module'
--- modules/controlpanel/controlpanel.module	
+++ modules/controlpanel/controlpanel.module	
@@ -1,4 +1,6 @@
 <?php
+// $Id$
+
 /**
  * @file
  * Enables the use of graphical Control Panels that can be used for site navigation.
@@ -96,12 +98,12 @@
   $content = '';
   $menu = menu_get_menu();
   $menu_visible = $menu['visible'];
-  $theme_path = $base_path . path_to_theme() . '/controlpanel/' . variable_get('controlpanel_icon_size' . $block, '48x48');
+  $theme_path = path_to_theme() . '/controlpanel/' . variable_get('controlpanel_icon_size' . $block, '48x48');
 
   if (file_exists($theme_path . '/control_panel_default.png')) {
     $image_directory = $theme_path;
   } else {
-    $image_directory = $base_path . drupal_get_path('module', 'controlpanel') . '/images/' . variable_get('controlpanel_icon_size' . $block, '48x48');
+    $image_directory = drupal_get_path('module', 'controlpanel') . '/images/' . variable_get('controlpanel_icon_size' . $block, '48x48');
   }
   
   $content .= '<div id="control-panel-' . $pid . '" class="control-panel">';
@@ -120,7 +122,7 @@
         $src = $image_directory . '/control_panel_default.png';
       }
       $content .= '<span style="display:block;">';
-      $content .= '<img src="' . $src . '" alt="'. $menu_visible[$mid]['title'] .'" title="'. $menu_visible[$mid]['title'] .'" />';
+      $content .= '<img src="' . base_path() . $src . '" alt="'. $menu_visible[$mid]['title'] .'" title="'. $menu_visible[$mid]['title'] .'" />';
       $content .= '<br />' . $menu_visible[$mid]['title'];
       $content .= '</span>';
       $content .= '</a>';
