bug #1205940, current timestamp checkbox when field type changes
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2005-05-27 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* tbl_properties.inc.php: bug #1205940, current timestamp checkbox
|
||||||
|
when field type changes
|
||||||
|
|
||||||
2005-05-26 Marc Delisle <lem9@users.sourceforge.net>
|
2005-05-26 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* tbl_create.php: bug #1207406, undefined index from PMA_setComment()
|
* tbl_create.php: bug #1207406, undefined index from PMA_setComment()
|
||||||
* sql.php: bug #1204913, left frame update on manual table rename
|
* sql.php: bug #1204913, left frame update on manual table rename
|
||||||
|
@@ -23,7 +23,8 @@ document.onkeydown = onKeyDownArrowsHandler;
|
|||||||
</script>
|
</script>
|
||||||
<?php }
|
<?php }
|
||||||
// here, the div_x_7 represents a div id which contains
|
// here, the div_x_7 represents a div id which contains
|
||||||
// the default current timestamp checkbox and label
|
// the default CURRENT TIMESTAMP checkbox and label
|
||||||
|
// and, field_x_7a represents the checkbox itself
|
||||||
|
|
||||||
if (PMA_MYSQL_INT_VERSION >= 40102) { ?>
|
if (PMA_MYSQL_INT_VERSION >= 40102) { ?>
|
||||||
<script type="text/javascript" language="javascript">
|
<script type="text/javascript" language="javascript">
|
||||||
@@ -33,6 +34,7 @@ function display_field_options(field_type, i) {
|
|||||||
getElement('div_' + i + '_7').style.display = 'block';
|
getElement('div_' + i + '_7').style.display = 'block';
|
||||||
} else {
|
} else {
|
||||||
getElement('div_' + i + '_7').style.display = 'none';
|
getElement('div_' + i + '_7').style.display = 'none';
|
||||||
|
getElement('field_' + i + '_7a').checked = false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -424,6 +426,7 @@ for ($i = 0 ; $i < $num_fields; $i++) {
|
|||||||
$tmp_display_type = 'block';
|
$tmp_display_type = 'block';
|
||||||
} else {
|
} else {
|
||||||
$tmp_display_type = 'none';
|
$tmp_display_type = 'none';
|
||||||
|
$default_current_timestamp = FALSE;
|
||||||
}
|
}
|
||||||
$content_cells[$i][$ci] .= '<br /><div id="div_' . $i . '_' . ($ci - $ci_offset) . '" style="white-space: nowrap; display: ' . $tmp_display_type . '"><input id="field_' . $i . '_' . ($ci - $ci_offset) . 'a" type="checkbox" name="field_default_current_timestamp[' . $i . ']"';
|
$content_cells[$i][$ci] .= '<br /><div id="div_' . $i . '_' . ($ci - $ci_offset) . '" style="white-space: nowrap; display: ' . $tmp_display_type . '"><input id="field_' . $i . '_' . ($ci - $ci_offset) . 'a" type="checkbox" name="field_default_current_timestamp[' . $i . ']"';
|
||||||
if ($default_current_timestamp) {
|
if ($default_current_timestamp) {
|
||||||
|
Reference in New Issue
Block a user