reduce select box
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2002-04-08 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* tbl_select.php3: to gain vertical space, reduce the size of the
|
||||||
|
select box if the number of fields is < 10
|
||||||
|
|
||||||
2002-04-06 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
2002-04-06 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||||
* header.inc.php3, lines 64-66; left.php3, lines 135-136 & 154-155: back
|
* header.inc.php3, lines 64-66; left.php3, lines 135-136 & 154-155: back
|
||||||
to previous version.
|
to previous version.
|
||||||
|
@@ -62,7 +62,7 @@ if (!isset($param) || $param[0] == '') {
|
|||||||
|
|
||||||
<?php echo $strSelectFields; ?> :<br />
|
<?php echo $strSelectFields; ?> :<br />
|
||||||
|
|
||||||
<select name="param[]" size="10" multiple="multiple">
|
<select name="param[]" size="<?php echo ($fields_cnt<10)? $fields_cnt: 10; ?>" multiple="multiple">
|
||||||
<?php
|
<?php
|
||||||
echo "\n";
|
echo "\n";
|
||||||
// Displays the list of the fields
|
// Displays the list of the fields
|
||||||
|
Reference in New Issue
Block a user