From 19e12e4bd813a90c723f8dd9702cb0c6fea4ba2b Mon Sep 17 00:00:00 2001 From: tjhunt Date: Tue, 3 Feb 2009 09:32:58 +0000 Subject: [PATCH] theme / navbar: MDL-14133 every link in the nav bar was getting class="first"! --- lib/weblib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/weblib.php b/lib/weblib.php index 150483b12c..fa2241598a 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -3629,9 +3629,9 @@ function print_navigation ($navigation, $separator=0, $return=false) { $url = $navitem['url']; if (empty($url)) { - $output .= '
  • '."$separator $title
  • \n"; + $output .= '
  • '."$separator $title
  • \n"; } else { - $output .= '
  • '."$separator\nframetarget.' onclick="this.target=\''.$CFG->framename.'\'" href="' + $output .= '
  • '."$separator\nframetarget.' onclick="this.target=\''.$CFG->framename.'\'" href="' .$url.'">'."$title\n
  • \n"; } } -- 2.39.5