fixed table layout for inserting/editing row, fixed select for empty value in enum
This commit is contained in:
@@ -5,6 +5,11 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2003-05-15 Michal Cihar <nijel@users.sourceforge.net>
|
||||||
|
* tbl_change.php3: Fixed table layout when LongtextDoubleTextarea is
|
||||||
|
false.
|
||||||
|
* tbl_select.php3: Fixed problems with empty value in enum.
|
||||||
|
|
||||||
2003-05-18 Marc Delisle <lem9@users.sourceforge.net>
|
2003-05-18 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* left.php3, index.php3: bug 739348: because the db name is no longer
|
* left.php3, index.php3: bug 739348: because the db name is no longer
|
||||||
encoded in left.php3 (to accomodate html entities), we have to stop
|
encoded in left.php3 (to accomodate html entities), we have to stop
|
||||||
@@ -14,7 +19,7 @@ $Source$
|
|||||||
|
|
||||||
2003-05-15 Michal Cihar <nijel@users.sourceforge.net>
|
2003-05-15 Michal Cihar <nijel@users.sourceforge.net>
|
||||||
* Documentation, config.inc.php3, tbl_change.php3,
|
* Documentation, config.inc.php3, tbl_change.php3,
|
||||||
libraries/config_import.lib.php3: Double sized textare for LONGTEXT is
|
libraries/config_import.lib.php3: Double sized textarea for LONGTEXT is
|
||||||
configurable (RFE #737174).
|
configurable (RFE #737174).
|
||||||
|
|
||||||
2003-05-14 Michal Cihar <nijel@users.sourceforge.net>
|
2003-05-14 Michal Cihar <nijel@users.sourceforge.net>
|
||||||
|
@@ -239,7 +239,7 @@ for ($i = 0; $i < $fields_cnt; $i++) {
|
|||||||
$bgcolor = ($i % 2) ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo'];
|
$bgcolor = ($i % 2) ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo'];
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td <?php echo (strstr($row_table_def['True_Type'], 'longtext') ? 'rowspan="2"' : ''); ?> align="center" bgcolor="<?php echo $bgcolor; ?>"><?php echo htmlspecialchars($field); ?></td>
|
<td <?php echo ($cfg['LongtextDoubleTextarea'] && strstr($row_table_def['True_Type'], 'longtext') ? 'rowspan="2"' : ''); ?> align="center" bgcolor="<?php echo $bgcolor; ?>"><?php echo htmlspecialchars($field); ?></td>
|
||||||
<?php
|
<?php
|
||||||
echo "\n";
|
echo "\n";
|
||||||
|
|
||||||
|
@@ -50,8 +50,6 @@ if (!isset($param) || $param[0] == '') {
|
|||||||
$shorttype = substr($type, 0, 3);
|
$shorttype = substr($type, 0, 3);
|
||||||
if ($shorttype == 'set' || $shorttype == 'enu') {
|
if ($shorttype == 'set' || $shorttype == 'enu') {
|
||||||
$type = eregi_replace(',', ', ', $type);
|
$type = eregi_replace(',', ', ', $type);
|
||||||
// Removes automatic MySQL escape format
|
|
||||||
$type = str_replace('\'\'', '\\\'', $type);
|
|
||||||
} else {
|
} else {
|
||||||
$type = eregi_replace('BINARY', '', $type);
|
$type = eregi_replace('BINARY', '', $type);
|
||||||
$type = eregi_replace('ZEROFILL', '', $type);
|
$type = eregi_replace('ZEROFILL', '', $type);
|
||||||
|
Reference in New Issue
Block a user