Index: admin_menu.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/admin_menu/admin_menu.inc,v
retrieving revision 1.11.2.19
diff -u -p -r1.11.2.19 admin_menu.inc
--- admin_menu.inc	3 Dec 2008 22:53:31 -0000	1.11.2.19
+++ admin_menu.inc	25 Dec 2008 16:15:54 -0000
@@ -105,8 +105,6 @@ function admin_menu_link_save($item) {
  *   If one of these links is added back, it should be removed from the array.
  */
 function admin_menu_admin_menu(&$deleted) {
-  global $base_url;
-
   $links = array();
   $icon_path = '<front>';
 
@@ -119,7 +117,7 @@ function admin_menu_admin_menu(&$deleted
   );
   $links[] = array(
     'title' => 'Run updates',
-    'path' => $base_url .'/update.php',
+    'path' => base_path() .'update.php',
     'weight' => 50,
     'parent_path' => $icon_path,
   );
@@ -281,7 +279,7 @@ function admin_menu_admin_menu(&$deleted
  *   An array of links that were removed from $menu_links.
  */
 function admin_menu_adjust_items(&$menu_links, &$sort) {
-  global $user, $base_url;
+  global $user;
   $links = array();
   $deleted = array();
 
