mirror of
https://github.com/moodle/moodle.git
synced 2025-04-13 12:32:08 +02:00
MDL-60492 core_tag: Fix title attribute
Attribute 'title' was specified inside a condition but closing `"` was outside condition possibly resulting in <a href="..." class="..." ">. Also moved </a> outside of condition to match <a>.
This commit is contained in:
parent
07238ca511
commit
fb4c20ee2c
@ -47,13 +47,14 @@
|
||||
{{#tags}}
|
||||
<li>
|
||||
<a href="{{viewurl}}" class="{{#isstandard}}standardtag{{/isstandard}} s{{size}}"
|
||||
{{#count}}title="{{#str}}numberofentries, blog, {{count}}{{/str}}{{/count}}">
|
||||
{{#count}}title="{{#str}}numberofentries, blog, {{count}}{{/str}}"{{/count}}>
|
||||
{{#flag}}
|
||||
<span class="flagged-tag">{{name}}</span></a>
|
||||
<span class="flagged-tag">{{name}}</span>
|
||||
{{/flag}}
|
||||
{{^flag}}
|
||||
{{name}}</a>
|
||||
{{name}}
|
||||
{{/flag}}
|
||||
</a>
|
||||
</li>
|
||||
{{/tags}}
|
||||
</ul>
|
||||
|
Loading…
x
Reference in New Issue
Block a user