diff options
author | ivan <ivan> | 2002-10-22 06:28:12 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-10-22 06:28:12 +0000 |
commit | a8b5b65b1c338cbaa0226d78e9d1b8a88a51e5eb (patch) | |
tree | aa971e7aad843025c49deaceb04b496795d3a5f2 | |
parent | aa37f4319bab2bdd152449c4fd48dfa0c5528d3a (diff) |
oops - allow adding CHECK invoice events too
-rwxr-xr-x | httemplate/edit/part_bill_event.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/part_bill_event.cgi b/httemplate/edit/part_bill_event.cgi index a10a186a9..6960a3824 100755 --- a/httemplate/edit/part_bill_event.cgi +++ b/httemplate/edit/part_bill_event.cgi @@ -41,7 +41,7 @@ print ntable("#cccccc",2), <<END; <TR><TD ALIGN="right">Payby</TD><TD><SELECT NAME="payby"> END -for (qw(CARD BILL COMP)) { +for (qw(CARD CHEK BILL COMP)) { print qq!<OPTION VALUE="$_"!; if ($part_bill_event->payby eq $_) { print " SELECTED>$_</OPTION>"; |