diff --git a/ChangeLog b/ChangeLog index 152f64936..526a12362 100755 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,7 @@ $Source$ * sql.php3, libraries/common.lib.php3 - when $cfg['SQP']['fmtType'] is set to 'none', positively retain any user formatting for query output. (RFE #769219) + * tbl_properties_structure.php3: fixed strNoDrop to strDrop 2003-07-28 Marc Delisle * sql.php3: bug 778899, could not create a bookmark diff --git a/tbl_properties_structure.php3 b/tbl_properties_structure.php3 index 9021aaf77..1a151a07a 100755 --- a/tbl_properties_structure.php3 +++ b/tbl_properties_structure.php3 @@ -244,7 +244,7 @@ while ($row = PMA_mysql_fetch_array($fields_rs)) { } else { $titles['Change'] = $strChange; $titles['Drop'] = $strDrop; - $titles['NoDrop'] = $strNoDrop; + $titles['NoDrop'] = $strDrop; $titles['Primary'] = $strPrimary; $titles['Index'] = $strIndex; $titles['Unique'] = $strUnique;