Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'MDL-63323-34-wrong-classes-attribute-into-activity_navi…
…gation' of https://github.com/davidherney/moodle into MOODLE_34_STABLE
  • Loading branch information
David Monllao committed Oct 8, 2018
2 parents 57241c5 + 571ee73 commit 4de8dd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions course/classes/output/activity_navigation.php
Expand Up @@ -72,7 +72,7 @@ public function __construct($prevmod, $nextmod, $activitylist = array()) {
}

$attributes = [
'classes' => 'btn btn-link',
'class' => 'btn btn-link',
'id' => 'prev-activity-link',
'title' => $linkname,
];
Expand All @@ -88,7 +88,7 @@ public function __construct($prevmod, $nextmod, $activitylist = array()) {
}

$attributes = [
'classes' => 'btn btn-link',
'class' => 'btn btn-link',
'id' => 'next-activity-link',
'title' => $linkname,
];
Expand Down

0 comments on commit 4de8dd3

Please sign in to comment.