diff --git a/ChangeLog b/ChangeLog index 6f940303f..048513c83 100755 --- a/ChangeLog +++ b/ChangeLog @@ -17,6 +17,8 @@ $Source$ caused HTML entities to be quoted twice. * tbl_indexes.php3: Fixed editing of index with HTML entities. * lang/czech: Updated. + * tbl_properties_structure.php3: Fix enabling/disabling links to index + creating (it requires type, but there was also MIME type added). 2003-03-23 Marc Delisle * libraries/sqlparser.lib.php3, libraries/config_import.lib.php3, diff --git a/tbl_properties_structure.php3 b/tbl_properties_structure.php3 index 32478842a..ebeaf2bee 100755 --- a/tbl_properties_structure.php3 +++ b/tbl_properties_structure.php3 @@ -133,7 +133,9 @@ while ($row = PMA_mysql_fetch_array($fields_rs)) { // garvin: Display basic mimetype [MIME] if ($cfgRelation['commwork'] && $cfgRelation['mimework'] && $cfg['BrowseMIME'] && isset($mime_map[$row['Field']]['mimetype'])) { - $type .= '
MIME: ' . str_replace('_', '/', $mime_map[$row['Field']]['mimetype']); + $type_mime = '
MIME: ' . str_replace('_', '/', $mime_map[$row['Field']]['mimetype']); + } else { + $type_mime = ''; } $strAttribute = ' '; @@ -175,7 +177,7 @@ while ($row = PMA_mysql_fetch_array($fields_rs)) { />    - > + >