From bcc4af3c7c6029b9191a51e68fdab42bb3fbe483 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Massart?= <fred@fmcorz.net>
Date: Thu, 6 Oct 2016 12:54:44 +0200
Subject: [PATCH] MDL-56262 theme: Missing hash symbol in skip to maincontent
 anchor link

---
 lib/templates/skip_links.mustache              | 2 +-
 theme/boost/templates/core/skip_links.mustache | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/templates/skip_links.mustache b/lib/templates/skip_links.mustache
index b0ad3e89959..8a1ef0de398 100644
--- a/lib/templates/skip_links.mustache
+++ b/lib/templates/skip_links.mustache
@@ -1,6 +1,6 @@
 <div class="skiplinks">
 {{#links}}
-    <a href="{{{url}}}" class="skip">{{{text}}}</a>
+    <a href="#{{{url}}}" class="skip">{{{text}}}</a>
 {{/links}}
 </div>
 {{#js}}
diff --git a/theme/boost/templates/core/skip_links.mustache b/theme/boost/templates/core/skip_links.mustache
index 4a32d8f62b7..2405f5fe6ee 100644
--- a/theme/boost/templates/core/skip_links.mustache
+++ b/theme/boost/templates/core/skip_links.mustache
@@ -1,5 +1,5 @@
 <div>
 {{#links}}
-    <a class="sr-only sr-only-focusable" href="{{{url}}}">{{{text}}}</a>
+    <a class="sr-only sr-only-focusable" href="#{{{url}}}">{{{text}}}</a>
 {{/links}}
 </div>
\ No newline at end of file