Changed Bank Address field from text to textarea (multirows)
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Mon, 10 Sep 2007 21:48:57 +0000 (21:48 +0000)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Mon, 10 Sep 2007 21:48:57 +0000 (21:48 +0000)
CHANGELOG.txt
gl/manage/bank_accounts.php

index 4e59d502c19001c78bd7fe73d741f8333455e3a6..01cb0a179624e87fba938aa55112b9984df7a5f8 100644 (file)
@@ -19,6 +19,10 @@ Legend:
 ! -> Note
 $ -> Affected files
 
+10-Sep-2007 Joe Hunt
+ ! Changed Bank Address field from text to textarea (multirows)
+ $ /gl/manage/bank_accounts.php
 06-Sep-2007 Joe Hunt
  + Added optional link for electronic payment on invoices (PayPal)
  $ /reporting/reports_main.php
index 6f1d3cd073d1fb6a868d8edc508e19b4fa53e62a..4c8c6446ab8362be1d2d59d6fbee464bf58d2c14 100644 (file)
@@ -95,12 +95,12 @@ while ($myrow = db_fetch($result))
        
        alt_table_row_color($k);
 
-    label_cell($myrow["account_code"] . " " . $myrow["account_name"]);
-    label_cell($myrow["bank_name"]);
-    label_cell($myrow["bank_account_name"]);
-       label_cell(bank_account_types::name($myrow["account_type"]));
-    label_cell($myrow["bank_account_number"]);
-    label_cell($myrow["bank_curr_code"]);
+    label_cell($myrow["account_code"] . " " . $myrow["account_name"], "nowrap");
+    label_cell($myrow["bank_name"], "nowrap");
+    label_cell($myrow["bank_account_name"], "nowrap");
+       label_cell(bank_account_types::name($myrow["account_type"]), "nowrap");
+    label_cell($myrow["bank_account_number"], "nowrap");
+    label_cell($myrow["bank_curr_code"], "nowrap");
     label_cell($myrow["bank_address"]);
     edit_link_cell("selected_id=" . $myrow["account_code"]);
     delete_link_cell("selected_id=" . $myrow["account_code"]. "&delete=1");
@@ -157,7 +157,8 @@ else
        currencies_list_row(_("Bank Account Currency:"), 'BankAccountCurrency', null);
 }      
 
-text_row(_("Bank Address:"), 'bank_address', null, 70, 70);
+textarea_row(_("Bank Address:"), 'bank_address', null, 40, 5);
+//text_row(_("Bank Address:"), 'bank_address', null, 70, 70);
 
 end_table(1);