fix tax class selection in package add/edit too
[freeside.git] / httemplate / edit / process / cust_credit.cgi
index 51fca74..85bfd44 100755 (executable)
@@ -1,15 +1,11 @@
-<!-- $Id: cust_credit.cgi,v 1.6 2002-01-30 14:18:08 ivan Exp $ -->
 <%
 
 $cgi->param('custnum') =~ /^(\d*)$/ or die "Illegal custnum!";
 my $custnum = $1;
 
-$cgi->param('otaker',getotaker);
-
 my $new = new FS::cust_credit ( {
   map {
     $_, scalar($cgi->param($_));
-  #} qw(custnum _date amount otaker reason)
   } fields('cust_credit')
 } );
 
@@ -27,5 +23,4 @@ if ( $error ) {
   print $cgi->redirect(popurl(3). "view/cust_main.cgi?$custnum");
 }
 
-
 %>