Merge pull request #8292 from creative-commoners/pulls/4.2/fix-id-conflict

FIX Altering ID of authenticator tabs to resolve ID conflict
This commit is contained in:
Daniel Hensby 2018-07-31 00:35:06 +01:00 committed by GitHub
commit 518f798ff8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,12 @@
<ul>
<% loop $Forms %>
<li>
<a href="#{$FormName}">$AuthenticatorName</a>
<a href="#{$FormName}_Tab">$AuthenticatorName</a>
</li>
<% end_loop %>
</ul>
<% loop $Forms %>
<div class="form-tab" id="{$FormName}">
<div class="form-tab" id="{$FormName}_Tab">
<h3>$AuthenticatorName</h3>
$forTemplate
</div>