Index: trunk/extensions/RecordAdmin/RecordAdmin_body.php |
— | — | @@ -408,7 +408,7 @@ |
409 | 409 | if( !in_array( $col, $row ) ) { |
410 | 410 | if( isset( $r[$col] ) ) { |
411 | 411 | if( !$fcol ) $text .= "@@@"; |
412 | | - $text .= $r[$col]; |
| 412 | + $text .= $r[$col] . "\n"; |
413 | 413 | $fcol = false; |
414 | 414 | } |
415 | 415 | } |
— | — | @@ -455,7 +455,7 @@ |
456 | 456 | if( !isset( $row[$col] ) ) { |
457 | 457 | $v = isset( $r[$col] ) ? array_shift( $pcols ) : ' '; |
458 | 458 | $class = 'col' . preg_replace( "|\W|", "-", $col ); |
459 | | - $row[$col] = "<td class='$class'>$v </td>"; |
| 459 | + $row[$col] = "<td class='$class'>$v</td>"; |
460 | 460 | } |
461 | 461 | $table .= "$row[$col]\n"; |
462 | 462 | } |