diff --git a/ChangeLog b/ChangeLog index fbb0eaab8..78300b3bb 100755 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,8 @@ $Source$ * tbl_replace.php3, tbl_replace_fields.php3: Bug #722629 - Use original values of a BLOB field when 'Insert as new row' is chosen on edit. + * libraries/display_tbl.lib.php3: Bug #662320 (highlight fields + crossing DB borders now allowed) 2003-04-16 Garvin Hicking * tbl_query_box.php3: Only hide 'go' SQL button, when in files mode diff --git a/libraries/display_tbl.lib.php3 b/libraries/display_tbl.lib.php3 index 49c02cb2b..7246d68dd 100644 --- a/libraries/display_tbl.lib.php3 +++ b/libraries/display_tbl.lib.php3 @@ -1158,7 +1158,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')) { $title = (!empty($dispval))? ' title="' . htmlspecialchars($dispval) . '"' : ''; $vertical_display['data'][$row_no][$i] .= '' . ($transform_function != $default_function ? $transform_function($row[$pointer], $transform_options) : $transform_function($row[$pointer])) . ''; @@ -1285,7 +1285,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')) { $title = (!empty($dispval))? ' title="' . htmlspecialchars($dispval) . '"' : ''; $vertical_display['data'][$row_no][$i] .= '' . $row[$pointer] . ''; @@ -1629,7 +1629,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')) { // check for display field? if ($cfgRelation['displaywork']) { $display_field = PMA_getDisplayField($db, $rel[2]); - $map[$rel[0]] = array($rel[2], $rel[3], $display_field); + $map[$rel[0]] = array($rel[2], $rel[3], $display_field, $rel[1]); } // end if } // end while } // end if