From 41a955aa081857d32cff5d1f6b9b8c5c23d6fcad Mon Sep 17 00:00:00 2001 From: kurund Date: Wed, 1 Jan 2014 11:39:37 -0800 Subject: [PATCH] CRM-13943, invalid menu html ---------------------------------------- * CRM-13943: Navigation menu has extra
  • in drupal http://issues.civicrm.org/jira/browse/CRM-13943 --- CRM/Core/BAO/Navigation.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Core/BAO/Navigation.php b/CRM/Core/BAO/Navigation.php index 037acf0334..c05d6a52d6 100644 --- a/CRM/Core/BAO/Navigation.php +++ b/CRM/Core/BAO/Navigation.php @@ -623,13 +623,13 @@ ORDER BY parent_id, weight"; module_exists('admin_menu') && user_access('access administration menu') ) ) { - $prepandString = "
  • " . $homeLabel . "
  • "; + $prepandString = "
  • " . $homeLabel . ""; } elseif ($config->userSystem->is_wordpress) { - $prepandString = "
  • " . $homeLabel . "
  • "; + $prepandString = "
  • " . $homeLabel . ""; } else { - $prepandString = "
  • " . $homeLabel . "
  • "; + $prepandString = "
  • " . $homeLabel . ""; } // prepend the navigation with locale info for CRM-5027 -- 2.25.1