! -> Note
$ -> Affected files
+09-Jul-2008 Janusz Dobrowolski
+# Corrections to maximum input lengths
+$ /gl/manage/bank_accounts.php
+ /gl/manage/gl_account_classes.php
+# Fixed spare Back link on restricted pages
+$ /includes/session.inc
+# Fixed bank_account_types_list()
+$ /includes/ui/ui_lists.inc
+# Fixed warning about unexisting POST var
+$ /sales/manage/customers.php
+
08-Jul-2008 Janusz Dobrowolski
# Added validation of entered quantities
$ /sales/customer_credit_invoice.php
bank_account_types_list_row(_("Account Type:"), 'account_type', null);
-text_row(_("Bank Name:"), 'bank_name', null, 50, 50);
-text_row(_("Bank Account Name:"), 'bank_account_name', null, 50, 50);
-text_row(_("Bank Account Number:"), 'bank_account_number', null, 30, 30);
+text_row(_("Bank Name:"), 'bank_name', null, 50, 60);
+text_row(_("Bank Account Name:"), 'bank_account_name', null, 50, 100);
+text_row(_("Bank Account Number:"), 'bank_account_number', null, 30, 60);
if ($is_editing)
{
text_row_ex(_("Class ID:"), 'id', 3);
}
-text_row_ex(_("Class Name:"), 'name', 50);
+text_row_ex(_("Class Name:"), 'name', 50, 60);
yesno_list_row(_("Balance Sheet:"), 'Balance', null, "", "", false);
echo "<center><br><br><br><b>";
echo _("The security settings on your account do not permit you to access this function");
echo "</b>";
- echo "<br><br><a href='javascript:history.go(-1)'>" . _("Back") . "</a>";
echo "<br><br><br><br></center>";
//echo '<script type="text/javascript">';
//echo 'alert("' . _("The security settings on your account do not permit you to access this function") . '");';
$items = array();
foreach ($types as $type)
{
- if (payment_person_types::has_items($type['id']))
- {
$items[$type['id']] = $type['name'];
- }
}
return array_selector($name, $selected_id, $items );
}
else
{
- hidden('customer_id', $_POST['customer_id']);
+ hidden('customer_id');
}
start_table($table_style2, 7, 6);