fixed bug #535984 - JS Error in tbl_change.php3
This commit is contained in:
@@ -10,8 +10,9 @@ $Source$
|
|||||||
("server" is always the first one).
|
("server" is always the first one).
|
||||||
* tbl_properties.php3, lines 1212-1249: fixed bad dislays with Opera and
|
* tbl_properties.php3, lines 1212-1249: fixed bad dislays with Opera and
|
||||||
removed trailing whitespaces.
|
removed trailing whitespaces.
|
||||||
* Documentaion.html: removed trailing whitespaces.
|
* Documentation.html: removed trailing whitespaces.
|
||||||
* libraries/display_tbl.lib.php3: very very light optimizations.
|
* libraries/display_tbl.lib.php3: very very light optimizations.
|
||||||
|
* tbl_change.php3: fixed bug #535984 - JS Error in tbl_change.php3.
|
||||||
|
|
||||||
2002-03-28 Marc Delisle <lem9@users.sourceforge.net>
|
2002-03-28 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* sql.php3, bug #535648: bookmarks can't be saved on the second server.
|
* sql.php3, bug #535648: bookmarks can't be saved on the second server.
|
||||||
|
@@ -253,9 +253,8 @@ for ($i = 0; $i < $fields_cnt; $i++) {
|
|||||||
// stored or retrieved" so it does not mean that the contents is
|
// stored or retrieved" so it does not mean that the contents is
|
||||||
// binary
|
// binary
|
||||||
if ($cfgShowFunctionFields) {
|
if ($cfgShowFunctionFields) {
|
||||||
if ((($cfgProtectBinary && $is_blob)
|
if (($cfgProtectBinary && $is_blob)
|
||||||
|| ($cfgProtectBinary == 'all' && $is_binary))
|
|| ($cfgProtectBinary == 'all' && $is_binary)) {
|
||||||
&& !empty($data)) {
|
|
||||||
echo ' <td align="center" bgcolor="'. $bgcolor . '">' . $strBinary . '</td>' . "\n";
|
echo ' <td align="center" bgcolor="'. $bgcolor . '">' . $strBinary . '</td>' . "\n";
|
||||||
} else if (strstr($row_table_def['True_Type'], 'enum') || strstr($row_table_def['True_Type'], 'set')) {
|
} else if (strstr($row_table_def['True_Type'], 'enum') || strstr($row_table_def['True_Type'], 'set')) {
|
||||||
echo ' <td align="center" bgcolor="'. $bgcolor . '">--</td>' . "\n";
|
echo ' <td align="center" bgcolor="'. $bgcolor . '">--</td>' . "\n";
|
||||||
@@ -288,7 +287,8 @@ for ($i = 0; $i < $fields_cnt; $i++) {
|
|||||||
// The null column
|
// The null column
|
||||||
// ---------------
|
// ---------------
|
||||||
echo ' <td bgcolor="' . $bgcolor . '">' . "\n";
|
echo ' <td bgcolor="' . $bgcolor . '">' . "\n";
|
||||||
if ($row_table_def['Null'] == 'YES') {
|
if (!(($cfgProtectBinary && $is_blob) || ($cfgProtectBinary == 'all' && $is_binary))
|
||||||
|
&& $row_table_def['Null'] == 'YES') {
|
||||||
echo ' <input type="checkbox" tabindex=' . ($i+3*$fields_cnt) . '"'
|
echo ' <input type="checkbox" tabindex=' . ($i+3*$fields_cnt) . '"'
|
||||||
. ' name="fields_null[' . urlencode($field) . ']"';
|
. ' name="fields_null[' . urlencode($field) . ']"';
|
||||||
if ($data == 'NULL' && !$first_timestamp) {
|
if ($data == 'NULL' && !$first_timestamp) {
|
||||||
|
Reference in New Issue
Block a user