From 076bbff5a7b233c673fde6e4acda4cc1918c88d5 Mon Sep 17 00:00:00 2001 From: Leon Stringer Date: Wed, 5 Aug 2020 12:55:02 +0100 Subject: [PATCH] MDL-60492 core_tag: Fix title attribute Attribute 'title' was specified inside a condition but closing `"` was outside condition possibly resulting in . Also moved outside of condition to match . --- tag/templates/tagcloud.mustache | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tag/templates/tagcloud.mustache b/tag/templates/tagcloud.mustache index b1e86baf612..fde088d5dc5 100644 --- a/tag/templates/tagcloud.mustache +++ b/tag/templates/tagcloud.mustache @@ -47,13 +47,14 @@ {{#tags}}
  • + {{#count}}title="{{#str}}numberofentries, blog, {{count}}{{/str}}"{{/count}}> {{#flag}} - {{name}} + {{name}} {{/flag}} {{^flag}} - {{name}} + {{name}} {{/flag}} +
  • {{/tags}}