From 4018dc016e9aa128b15e022d3bacd61ae18589d7 Mon Sep 17 00:00:00 2001 From: Shawn Kwang Date: Tue, 2 May 2017 10:43:16 -0500 Subject: [PATCH] Drupal: Fixed link to use url() function. --- drupal/sites/default/boinc/themes/boinc/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drupal/sites/default/boinc/themes/boinc/template.php b/drupal/sites/default/boinc/themes/boinc/template.php index 8a4f9098ed..9f9df831e8 100644 --- a/drupal/sites/default/boinc/themes/boinc/template.php +++ b/drupal/sites/default/boinc/themes/boinc/template.php @@ -98,7 +98,7 @@ function boinc_links__system_main_menu($links, $menu, $element) { if ($link['href'] == 'dashboard') { $item_count = privatemsg_unread_count(); if ($item_count) { - $link['title'] .= '
' . $item_count . '
'; + $link['title'] .= '
' . $item_count . '
'; $link['html'] = TRUE; $link['attributes']['class'] = 'compound'; }