]> git.joonet.de Git - adminer.git/commitdiff
Same fields order as in login form
authorJakub Vrana <jakub@vrana.cz>
Thu, 5 May 2011 11:20:39 +0000 (13:20 +0200)
committerJakub Vrana <jakub@vrana.cz>
Thu, 5 May 2011 15:02:38 +0000 (17:02 +0200)
adminer/user.inc.php

index 874b01de39fdfe25fc235899dae7076ae306f2a4..f52396efd69bf935fa5e85822d7199246ab17057 100644 (file)
@@ -117,8 +117,8 @@ if ($_POST) {
 ?>
 <form action="" method="post">
 <table cellspacing="0">
-<tr><th><?php echo lang('Username'); ?><td><input name="user" maxlength="16" value="<?php echo h($row["user"]); ?>">
 <tr><th><?php echo lang('Server'); ?><td><input name="host" maxlength="60" value="<?php echo h($row["host"]); ?>">
+<tr><th><?php echo lang('Username'); ?><td><input name="user" maxlength="16" value="<?php echo h($row["user"]); ?>">
 <tr><th><?php echo lang('Password'); ?><td><input id="pass" name="pass" value="<?php echo h($row["pass"]); ?>">
 <?php if (!$row["hashed"]) { ?><script type="text/javascript">typePassword(document.getElementById('pass'));</script><?php } ?>
 <?php echo checkbox("hashed", 1, $row["hashed"], lang('Hashed'), "typePassword(this.form['pass'], this.checked);"); ?>