Fixed the error caused due to a missing index , relocated the code that sets the null class for a null element

This commit is contained in:
ninadsp
2010-08-22 12:59:25 +05:30
parent c9253c0a0e
commit 6a2445ccf2

View File

@@ -1077,9 +1077,6 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
// pointer code part // pointer code part
echo ' <tr class="' . $class . '">' . "\n"; echo ' <tr class="' . $class . '">' . "\n";
$class = $data_inline_edit_class; $class = $data_inline_edit_class;
if(is_null($row[$i])) {
$class .= 'null';
}
} }
@@ -1207,6 +1204,12 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
$meta = $fields_meta[$i]; $meta = $fields_meta[$i];
$pointer = $i; $pointer = $i;
$is_field_truncated = false; $is_field_truncated = false;
//If this column's value is null, add the null class to it, needed
//for inline editing
if(is_null($row[$i])) {
$class .= ' null';
}
// See if this column should get highlight because it's used in the // See if this column should get highlight because it's used in the
// where-query. // where-query.
if (isset($highlight_columns) && (isset($highlight_columns[$meta->name]) || isset($highlight_columns[PMA_backquote($meta->name)]))) { if (isset($highlight_columns) && (isset($highlight_columns[$meta->name]) || isset($highlight_columns[PMA_backquote($meta->name)]))) {