diff --git a/lib/weblib.php b/lib/weblib.php index dc0054a1cd8..a1cdda38c67 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -4299,17 +4299,17 @@ function navmenu($course, $cm=NULL, $targetwindow='self') { } if ($backmod) { $backtext= get_string('activityprev', 'access'); - $backmod = '
'; + ''.$backtext.''; } if ($nextmod) { $nexttext= get_string('activitynext', 'access'); - $nextmod = ''; + ''.$nexttext.''; } return "| ".$logslink .' | '. $backmod .' | ' . diff --git a/theme/standard/styles_layout.css b/theme/standard/styles_layout.css index 3d017d59e75..6a794fd1ed7 100644 --- a/theme/standard/styles_layout.css +++ b/theme/standard/styles_layout.css @@ -418,6 +418,10 @@ form#adminsettings div.htmlarea { text-align:right; } +.headermenu fieldset{ + border: 0; +} + .navbar { width:auto; padding:3px 0.5em; |