summaryrefslogtreecommitdiffstats
path: root/wizard
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2022-07-20 16:23:42 +0200
committerRemi Collet <remi@php.net>2022-07-20 16:23:42 +0200
commit61ccab1660fe667869e52ee801ebdb127293df50 (patch)
tree7e0083f70240697ada479387b8ded6a7192aea5a /wizard
parent61afab66f1847fdd6bfa9505e92d10d90ef13e5f (diff)
Wizard: fix dropdown name
Diffstat (limited to 'wizard')
-rw-r--r--wizard/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizard/index.php b/wizard/index.php
index 30d1de1e..09bb06d0 100644
--- a/wizard/index.php
+++ b/wizard/index.php
@@ -181,7 +181,7 @@ $arch = (isset($_POST['arch']) && isset($types[$_POST['arch']]) ? $_POST['type'
</select>
</p></li>
<li><p>Architecture:
- <select name='type' onChange='submit()'>
+ <select name='arch' onChange='submit()'>
<?php
foreach($arches as $archref => $name) printf("<option value='%s' %s>%s</option>", $archref, ($archref===$arch ? 'selected' : ''), $name);
?>