Skip to content

Commit

Permalink
MDL-60501 themes: Fix closing <h4> in template
Browse files Browse the repository at this point in the history
In site admin pages (/admin/search.php) <h4> elements were generated
with an incorrect second opening <h4> instead of a closing </h4>.
  • Loading branch information
leonstr committed Jul 20, 2020
1 parent 741d6dd commit 6b03aeb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/templates/settings_link_page.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@
<hr>
<div class="row">
<div class="col-sm-3">
{{#action}}<h4><a href="{{action}}">{{text}}</a><h4>{{/action}}
{{^action}}<h4>{{text}}<h4>{{/action}}
{{#action}}<h4><a href="{{action}}">{{text}}</a></h4>{{/action}}
{{^action}}<h4>{{text}}</h4>{{/action}}
</div>
<div class="col">
<ul class="list-unstyled">
Expand All @@ -105,8 +105,8 @@
<div class="container">
<div class="row">
<div class="col-sm-3">
{{#action}}<h4><a href="{{action}}">{{text}}</a><h4>{{/action}}
{{^action}}<h4>{{text}}<h4>{{/action}}
{{#action}}<h4><a href="{{action}}">{{text}}</a></h4>{{/action}}
{{^action}}<h4>{{text}}</h4>{{/action}}
</div>
<div class="col-sm-9">
<ul class="list-unstyled">
Expand All @@ -126,8 +126,8 @@
<hr>
<div class="row">
<div class="col-sm-3">
{{#action}}<h4><a href="{{action}}">{{text}}</a><h4>{{/action}}
{{^action}}<h4>{{text}}<h4>{{/action}}
{{#action}}<h4><a href="{{action}}">{{text}}</a></h4>{{/action}}
{{^action}}<h4>{{text}}</h4>{{/action}}
</div>
<div class="col-sm-9">
<ul class="list-unstyled">
Expand Down

0 comments on commit 6b03aeb

Please sign in to comment.