From 0bac6c14ebd61c8b74753de5384ef64bfcd25d8b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 9 Sep 2008 17:23:59 +0000 Subject: [PATCH] patch #2099972 [structure] Display None when there is no default value --- ChangeLog | 2 ++ tbl_structure.php | 3 +++ 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 68f0372bc..a9fc538af 100644 --- a/ChangeLog +++ b/ChangeLog @@ -22,6 +22,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA + rfe #1612724 [export] add option to export without comments - bug #2090002 [display] Cannot edit row in VIEW - patch #2099962 [js] fix js error without frameset, thanks to Xuefer +- patch #2099972 [structure] Display None when there is no default value, + thanks to Xuefer - xuefer 3.0.0.0 (not yet released) + [export] properly handle line breaks for YAML, thanks to Dan Barry - diff --git a/tbl_structure.php b/tbl_structure.php index 240a8f36f..e786cf130 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -340,6 +340,9 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) { } else { echo $row['Default']; } + } + else { + echo '' . $strNone . ''; } ?>