Do not display functions with enum or set fields types
This commit is contained in:
@@ -14,8 +14,9 @@ $Source$
|
|||||||
* lang/*: $strInstructions (used in db_readdump.php3).
|
* lang/*: $strInstructions (used in db_readdump.php3).
|
||||||
|
|
||||||
2001-08-19 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
2001-08-19 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||||
* tbl_change.php3: do not modify blob/binaries if $cfgProtectBlob is true
|
* tbl_change.php3: do not modify blob/binaries if $cfgProtectBlob is true,
|
||||||
and merged a little optimization (lines 69-71).
|
merged a little optimization (lines 69-71) and do not display functions
|
||||||
|
with enum or set fields types.
|
||||||
* main.php3; db_details.php3; tbl_properties.php3; db_readdump.php3;
|
* main.php3; db_details.php3; tbl_properties.php3; db_readdump.php3;
|
||||||
lib.inc.php3: once a query has been executed phpMyAdmin now moves back
|
lib.inc.php3: once a query has been executed phpMyAdmin now moves back
|
||||||
to the calling script (rather than db_details.php3 everytime) as soon as
|
to the calling script (rather than db_details.php3 everytime) as soon as
|
||||||
|
@@ -133,6 +133,8 @@ for ($i = 0; $i < $fields_cnt; $i++) {
|
|||||||
&& !empty($data)
|
&& !empty($data)
|
||||||
&& $cfgProtectBlob == TRUE) {
|
&& $cfgProtectBlob == TRUE) {
|
||||||
echo ' <td align="center">' . $strBinary . '</td>' . "\n";
|
echo ' <td align="center">' . $strBinary . '</td>' . "\n";
|
||||||
|
} else if (strstr($row_table_def['True_Type'], 'enum') || strstr($row_table_def['True_Type'], 'set')) {
|
||||||
|
echo ' <td align="center">--</td>' . "\n";
|
||||||
} else {
|
} else {
|
||||||
?>
|
?>
|
||||||
<td>
|
<td>
|
||||||
|
Reference in New Issue
Block a user