diff options
author | ivan <ivan> | 2002-08-30 23:42:47 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-08-30 23:42:47 +0000 |
commit | 10adfb99055cc684f96cf446da34a7423cac3459 (patch) | |
tree | d4590f2a0e1dd9968e48fadbb482c53b53aaebc1 /httemplate/edit/process | |
parent | 971a48bc316c52aa1471d195d75ba0137c286040 (diff) |
new invoice event: upload a CSV file
Diffstat (limited to 'httemplate/edit/process')
-rwxr-xr-x | httemplate/edit/process/part_bill_event.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/process/part_bill_event.cgi b/httemplate/edit/process/part_bill_event.cgi index 4049ade80..e224bf634 100755 --- a/httemplate/edit/process/part_bill_event.cgi +++ b/httemplate/edit/process/part_bill_event.cgi @@ -12,7 +12,7 @@ if ( ! $cgi->param('plan_weight_eventcode') ) { $error = "Must select an action"; } else { - $cgi->param('plan_weight_eventcode') =~ /^([\w\-]+):(\d+):(.*)$/ + $cgi->param('plan_weight_eventcode') =~ /^([\w\-]+):(\d+):(.*)$/s or die "illegal plan_weight_eventcode:". $cgi->param('plan_weight_eventcode'); $cgi->param('plan', $1); |