maximum database name size is 64 characters

This commit is contained in:
Loïc Chapeaux
2002-01-05 16:10:55 +00:00
parent 8089ad0c19
commit 9a70186a5c
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2001-01-05 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* main.php3, line 234: maximum database name size is 64 characters.
2001-01-04 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* db_details.php3: beautify the displayed page.

View File

@@ -231,7 +231,7 @@ if ($server > 0) {
<input type="hidden" name="server" value="<?php echo $server; ?>" />
<input type="hidden" name="lang" value="<?php echo $lang; ?>" />
<input type="hidden" name="reload" value="1" />
<input type="text" name="db" value="<?php echo $db_to_create; ?>" />
<input type="text" name="db" value="<?php echo $db_to_create; ?>" maxlength="64" />
<input type="submit" value="<?php echo $strCreate; ?>" />
</form>
</td>