Ticket #404 (closed Bug report: fixed)
Fixed BUG in installer
| Reported by: | kripper | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | Not yet assigned to a Milestone |
| Component: | Auth server, Install script | Version: | |
| Keywords: | bug installer | Cc: |
Description
After the language setting, the installer cannot continue, due to a JavaScript? error. When submiting, the script tries to access the "page" hidden field, which is not accesible since it is in a form which contains another form.
Removing the nested form, the installer works again.
Index: install.php =================================================================== --- install.php (revision 1311) +++ install.php (working copy) @@ -766,7 +766,6 @@
<p>Please select the Authentication Servers default language and locale</p>
<div class="language">
- <form class="language" name="lang_form" method="post" action="{$formAction}">
<div>Default Server Locale:
<select name="default_locale" onchange="newConfig('DEFAULT_LANG=' + this.options[this.selectedIndex].value);">
EndHTML;
@@ -784,7 +783,6 @@
print<<<EndHTML
</select> </div>
- </form>
</div>
