Topic: HTML cleanup in bank inquiry

Lines 65 to 69 in gl/inquiry/bank_inquiry.php:

div_start('trans_tbl');
$act = get_bank_account($_POST["bank_account"]);
display_heading($act['bank_account_name']." - ".$act['bank_curr_code']);

start_table(TABLESTYLE);

can have the html cleaned up to be:

$act = get_bank_account($_POST["bank_account"]);
display_heading($act['bank_account_name']." - ".$act['bank_curr_code']);

div_start('trans_tbl');
start_table(TABLESTYLE);

so as not to clutter the table construct.

Possibly present elsewhere in the code as well.