Index: includes/menu.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/menu.inc,v retrieving revision 1.246 diff -u -p -r1.246 menu.inc --- includes/menu.inc 10 Jan 2008 20:16:50 -0000 1.246 +++ includes/menu.inc 16 Jan 2008 01:01:13 -0000 @@ -1067,7 +1067,7 @@ function theme_menu_item($link, $has_chi if ($in_active_trail) { $class .= ' active-trail'; } - return '
  • '. $link . $menu .'
  • '."\n"; + return '
  • '. $link . $menu ."
  • \n"; } /** @@ -1076,7 +1076,7 @@ function theme_menu_item($link, $has_chi * @ingroup themeable */ function theme_menu_local_task($link, $active = FALSE) { - return '
  • '. $link .'
  • '; + return '
  • '. $link ."
  • \n"; } /** Index: includes/theme.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/theme.inc,v retrieving revision 1.410 diff -u -p -r1.410 theme.inc --- includes/theme.inc 15 Jan 2008 10:43:00 -0000 1.410 +++ includes/theme.inc 16 Jan 2008 01:01:14 -0000 @@ -1429,7 +1429,7 @@ function theme_item_list($items = array( if ($i == $num_items - 1) { $attributes['class'] = empty($attributes['class']) ? 'last' : ($attributes['class'] .' last'); } - $output .= ''. $data .''; + $output .= ''. $data ."\n"; } $output .= ""; } Index: modules/blog/blog.pages.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/blog/blog.pages.inc,v retrieving revision 1.5 diff -u -p -r1.5 blog.pages.inc --- modules/blog/blog.pages.inc 9 Jan 2008 09:51:34 -0000 1.5 +++ modules/blog/blog.pages.inc 16 Jan 2008 01:01:14 -0000 @@ -20,7 +20,7 @@ function blog_page_user($account) { $items[] = l(t('Post new blog entry.'), "node/add/blog"); } else if ($account->uid == $user->uid) { - $items[] = t('You are not allowed to post a new blog entry.') .''; + $items[] = t('You are not allowed to post a new blog entry.'); } $output = theme('item_list', $items);