Skip to content

Commit

Permalink
breadcrumb MDL-14133 One function missed during fix, got it this time
Browse files Browse the repository at this point in the history
  • Loading branch information
samhemelryk committed Jun 9, 2009
1 parent a9fcd45 commit 936369e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/weblib.php
Expand Up @@ -3858,7 +3858,11 @@ function build_navigation($extranavlinks, $cm = null) {
if (!empty($navlink['type']) && $navlink['type'] == 'activity' && !$last && $hideactivitylink) {
continue;
}
$navigation .= '<li class="first">';
if ($first) {
$navigation .= '<li class="first">';
} else {
$navigation .= '<li>';
}
if (!$first) {
$navigation .= get_separator();
}
Expand Down

0 comments on commit 936369e

Please sign in to comment.