]> git.joonet.de Git - adminer.git/commitdiff
Increase username maxlength to 80 (bug #623)
authorJakub Vrana <jakub@vrana.cz>
Sun, 15 Jul 2018 19:01:38 +0000 (21:01 +0200)
committerJakub Vrana <jakub@vrana.cz>
Sun, 15 Jul 2018 19:01:38 +0000 (21:01 +0200)
adminer/user.inc.php
changes.txt

index 27f007f81da81e4304ec831504cd1fefa572420a..babcc1008cc73508fbbe9f2709b6857b5a90370d 100644 (file)
@@ -133,7 +133,7 @@ if ($_POST) {
 <form action="" method="post">
 <table cellspacing="0">
 <tr><th><?php echo lang('Server'); ?><td><input name="host" maxlength="60" value="<?php echo h($row["host"]); ?>" autocapitalize="off">
-<tr><th><?php echo lang('Username'); ?><td><input name="user" maxlength="16" value="<?php echo h($row["user"]); ?>" autocapitalize="off">
+<tr><th><?php echo lang('Username'); ?><td><input name="user" maxlength="80" value="<?php echo h($row["user"]); ?>" autocapitalize="off">
 <tr><th><?php echo lang('Password'); ?><td><input name="pass" id="pass" value="<?php echo h($row["pass"]); ?>" autocomplete="new-password">
 <?php if (!$row["hashed"]) { echo script("typePassword(qs('#pass'));"); } ?>
 <?php echo checkbox("hashed", 1, $row["hashed"], lang('Hashed'), "typePassword(this.form['pass'], this.checked);"); ?>
index 6b775e89a2aa45ad8272659f1b5bddcbb6bd4aec..b7b5972b0d67de1eee555d6cb51b07087fe46695 100644 (file)
@@ -2,6 +2,7 @@ Adminer 4.6.4-dev:
 Fix inline editing of empty cells (regression from 4.6.3)
 Allow adding more than two indexes and forign key columns at a time (regression from 4.4.0)
 Fix function change with set data type
+Increase username maxlength to 80 (bug #623)
 MySQL: Support foreign keys created with ANSI quotes (bug #620)
 
 Adminer 4.6.3 (released 2018-06-28):