This naive fix seems to have effects on the javascript or something because the tab doesn't load by default anymore.. Experienced on firefox.
diff --git a/html/captive-portal/templates/guest/register_guest.html b/html/captive-portal/templates/guest/register_guest.html
index 0f57f9d..4e85847 100644
--- a/html/captive-portal/templates/guest/register_guest.html
+++ b/html/captive-portal/templates/guest/register_guest.html
@@ -136,7 +136,7 @@ var initialTabName = "single";
</div>
<div class="input">
<span>[% i18n("Columns Order") %]*</span>
- <input type="hidden" name="columns"id="columns_order"
value="[% IF columns %][% columns %][% ELSE %]c_username,c_password[% END %]">
+ <input type="hidden" name="columns" id="columns_order"
value="[% IF columns %][% columns | html %][% ELSE %]c_username,c_password[% END %]">
<div class="note" id="columns">
<div class="column"><input type="checkbox" name="c_username"
checked disabled><span>[% i18n("Username") %]</span><span class="order"><img
src="/content/images/arrow_up_12x12.png"><
<div class="column"><input type="checkbox" name="c_password"
checked disabled><span>[% i18n("Password") %]</span><span class="order"><img
src="/content/images/arrow_up_12x12.png"><
|