diff options
| author | ivan <ivan> | 2008-06-01 21:25:51 +0000 | 
|---|---|---|
| committer | ivan <ivan> | 2008-06-01 21:25:51 +0000 | 
| commit | 4a7136d9b031c532155ab17022498d034ab0cb91 (patch) | |
| tree | 15b9ecd39c420850549a70f9faa5f4490eb89d25 | |
| parent | d1f2f7f8286ce366efe7c72b731fd3536d751ef1 (diff) | |
sync with HEAD (add ability to modify refund records)
| -rw-r--r-- | FS/FS/cust_refund.pm | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/cust_refund.pm b/FS/FS/cust_refund.pm index c609d75f4..e075e3ed5 100644 --- a/FS/FS/cust_refund.pm +++ b/FS/FS/cust_refund.pm @@ -221,7 +221,8 @@ Modifying a refund?  Well, don't say I didn't warn you.  =cut  sub replace { -   return "Can't (yet?) modify cust_refund records!"; +  my $self = shift; +  $self->SUPER::replace(@_);  }  =item check  | 
