|
Lines 502-509
END_SQL
Link Here
|
| 502 |
if ($htmlfilename) { |
502 |
if ($htmlfilename) { |
| 503 |
$titles = "<table id='itemscontent$borrowernumber'>"; |
503 |
$titles = "<table id='itemscontent$borrowernumber'>"; |
| 504 |
$titles .= "<thead><tr><th>" . join( "</th><th>", @$columns_def_hashref{@item_content_fields} ); |
504 |
$titles .= "<thead><tr><th>" . join( "</th><th>", @$columns_def_hashref{@item_content_fields} ); |
| 505 |
warn @item_content_fields; |
505 |
#warn @item_content_fields; |
| 506 |
warn map { "$columns_def_hashref->{$_};" } @item_content_fields; |
506 |
#warn map { "$columns_def_hashref->{$_};" } @item_content_fields; |
| 507 |
$titles .= "</th></tr></thead><tbody>"; |
507 |
$titles .= "</th></tr></thead><tbody>"; |
| 508 |
} |
508 |
} |
| 509 |
my @items = (); |
509 |
my @items = (); |
| 510 |
- |
|
|