diff --git a/ChangeLog b/ChangeLog index 7b56e41ab..6dfc18c52 100755 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,11 @@ $Source$ libraries/kanji-encoding.lib.php3; libraries/sqlparser.lib.php3 libraries/string.lib.php3; user_password.php3: coding standards. * libraries/auth/cookie.auth.php3: fixes a PHP3 bug. + * libraries/functiuons.js: fixed bug #627567 - Javascript bug in + setPointer() function thanks to Christopher Bloom + + * libraries/display_tbl.lib.php3, lines 1123-1124: fixed bug + #626366 - "date" columns wrap in browse mode. 2002-10-25 Marc Delisle * Documentation.html, clarification about using Relation View diff --git a/libraries/display_tbl.lib.php3 b/libraries/display_tbl.lib.php3 index 724bbdbfa..fd78e813e 100644 --- a/libraries/display_tbl.lib.php3 +++ b/libraries/display_tbl.lib.php3 @@ -1120,7 +1120,9 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')) { $row[$pointer] = str_replace("\011", '    ', str_replace(' ', '  ', $row[$pointer])); $row[$pointer] = ereg_replace("((\015\012)|(\015)|(\012))", '
', $row[$pointer]); } - $vertical_display['data'][$row_no][$i] = ' '; + // loic1: do not wrap if date field type + $nowrap = (eregi('DATE|TIME', $meta->type) ? ' nowrap="nowrap"' : ''); + $vertical_display['data'][$row_no][$i] = ' '; if (isset($map[$meta->name])) { // Field to display from the foreign table?