bug 879923
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2004-02-03 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* tbl_change.php: bug 879923, NULL default value of DATETIME field
|
||||||
|
|
||||||
2004-02-02 Marc Delisle <lem9@users.sourceforge.net>
|
2004-02-02 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* export.php: security fix, thanks to Cedric Cochin for the advisory
|
* export.php: security fix, thanks to Cedric Cochin for the advisory
|
||||||
* lang/slovak: Updated, thanks to Lubos Klokner (erkac).
|
* lang/slovak: Updated, thanks to Lubos Klokner (erkac).
|
||||||
|
@@ -277,7 +277,8 @@ foreach($loop_array AS $vrowcount => $vrow) {
|
|||||||
// value (the real default value will be set in the
|
// value (the real default value will be set in the
|
||||||
// Default value logic below)
|
// Default value logic below)
|
||||||
if ($row_table_def['Type'] == 'datetime'
|
if ($row_table_def['Type'] == 'datetime'
|
||||||
&& (!isset($row_table_def['Default']))) {
|
&& (!isset($row_table_def['Default']))
|
||||||
|
&& (!is_null($row_table_def['Default']))) {
|
||||||
// INSERT case
|
// INSERT case
|
||||||
if ($insert_mode) {
|
if ($insert_mode) {
|
||||||
if (isset($vrow)) {
|
if (isset($vrow)) {
|
||||||
|
Reference in New Issue
Block a user