mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
MDL-60501 themes: Fix closing <h4> in template
In site admin pages (/admin/search.php) <h4> elements were generated with an incorrect second opening <h4> instead of a closing </h4>.
This commit is contained in:
parent
741d6dde19
commit
6b03aebf27
@ -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">
|
||||
@ -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">
|
||||
@ -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">
|
||||
|
Loading…
x
Reference in New Issue
Block a user