From 6b03aebf27ae983cf68388cde54db9ff2b490463 Mon Sep 17 00:00:00 2001 From: Leon Stringer Date: Tue, 16 Jun 2020 13:54:52 +0100 Subject: [PATCH] MDL-60501 themes: Fix closing

in template In site admin pages (/admin/search.php)

elements were generated with an incorrect second opening

instead of a closing

. --- lib/templates/settings_link_page.mustache | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/templates/settings_link_page.mustache b/lib/templates/settings_link_page.mustache index c763f4b5c0c..29917537fdc 100644 --- a/lib/templates/settings_link_page.mustache +++ b/lib/templates/settings_link_page.mustache @@ -82,8 +82,8 @@
- {{#action}}

{{text}}

{{/action}} - {{^action}}

{{text}}

{{/action}} + {{#action}}

{{text}}

{{/action}} + {{^action}}

{{text}}

{{/action}}
    @@ -105,8 +105,8 @@
    - {{#action}}

    {{text}}

    {{/action}} - {{^action}}

    {{text}}

    {{/action}} + {{#action}}

    {{text}}

    {{/action}} + {{^action}}

    {{text}}

    {{/action}}
      @@ -126,8 +126,8 @@
      - {{#action}}

      {{text}}

      {{/action}} - {{^action}}

      {{text}}

      {{/action}} + {{#action}}

      {{text}}

      {{/action}} + {{^action}}

      {{text}}

      {{/action}}