From 5532975a0acd24cb5e1ff5e99447b98f8aed6d72 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 27 Nov 2008 21:19:22 +0000 Subject: [PATCH] missing parameter --- libraries/display_tbl.lib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index f1ffa4044..bfed59177 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -1228,7 +1228,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { $nowrap = ' nowrap'; $where_comparison = ' = ' . $row[$i]; - $vertical_display['data'][$row_no][$i] = ' ' . "\n"; } @@ -1347,7 +1347,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { // loic1: do not wrap if date field type $nowrap = ((preg_match('@DATE|TIME@i', $meta->type) || $bool_nowrap) ? ' nowrap' : ''); $where_comparison = ' = \'' . PMA_sqlAddslashes($row[$i]) . '\''; - $vertical_display['data'][$row_no][$i] = ' ' . "\n"; @@ -2225,7 +2225,7 @@ function PMA_handle_non_printable_contents($category, $content, $transform_funct * @param string $where_comparison * @return string formatted data */ -function PMA_prepare_row_data($mouse_events, $class, $condition_field, $analyzed_sql, $meta, $map, $data, $transform_function, $default_function, $nowrap, $where_comparison) { +function PMA_prepare_row_data($mouse_events, $class, $condition_field, $analyzed_sql, $meta, $map, $data, $transform_function, $default_function, $nowrap, $where_comparison, $transform_options) { // continue the tag started before calling this function: $result = $mouse_events . ' class="' . $class . ($condition_field ? ' condition' : '') . $nowrap . '">';