From c3c5403ce5f3cdccd51120537b6e01021f1ec712 Mon Sep 17 00:00:00 2001 From: Thomas Kasulke Date: Wed, 25 Apr 2007 12:01:46 +0000 Subject: [PATCH] $form->{duedate} und $form->{transdate} quoted, da sonst in den values der inputtags in den Formularen onBlur... drinsteht --- bin/mozilla/ap.pl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/mozilla/ap.pl b/bin/mozilla/ap.pl index 65c51a1f1..b0ab9905c 100644 --- a/bin/mozilla/ap.pl +++ b/bin/mozilla/ap.pl @@ -461,12 +461,12 @@ selectvendor } | # with JavaScript Calendar $button1 = qq| - {transdate} onBlur=\"check_right_date_format(this)\"> $readonly + $readonly text('button') . qq|> |; $button2 = qq| - {duedate} onBlur=\"check_right_date_format(this)\"> $readonly + $readonly text('button') . qq|> |; @@ -479,9 +479,9 @@ selectvendor } | # without JavaScript Calendar $button1 = - qq|{transdate} onBlur=\"check_right_date_format(this)\"> $readonly|; + qq| $readonly|; $button2 = - qq|{duedate} onBlur=\"check_right_date_format(this)\"> $readonly|; + qq| $readonly|; } $form->{javascript} .= qq||; $form->header; @@ -776,12 +776,12 @@ $jsscript |; $column_data{"paid_$i"} = - qq|{"paid_$i"} onBlur=\"check_right_number_format(this)\">|; + qq||; $column_data{"AP_paid_$i"} = qq|${selectAP_paid}|; $column_data{"exchangerate_$i"} = qq|$exchangerate|; $column_data{"datepaid_$i"} = - qq|{"datepaid_$i"} onBlur=\"check_right_date_format(this)\"> + qq| |; $column_data{"source_$i"} = qq||; -- 2.20.1