diff options
author | ivan <ivan> | 2007-09-12 04:23:53 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-09-12 04:23:53 +0000 |
commit | f9bba7174781a1be9fb275d3ede18d9c65071ef0 (patch) | |
tree | 2faade09f11c2b14a604142f5ef6453a054d71f6 | |
parent | 766394c33ca378c3dc28804c54067902b149c3da (diff) |
fix problems migrating weird statustext from cust_bill_event records
-rw-r--r-- | FS/FS/cust_event.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_event.pm b/FS/FS/cust_event.pm index bebd72a10..13b3efa4b 100644 --- a/FS/FS/cust_event.pm +++ b/FS/FS/cust_event.pm @@ -140,7 +140,7 @@ sub check { ) || $self->ut_number('_date') || $self->ut_enum('status', [qw( new locked done failed )]) - || $self->ut_textn('statustext') + || $self->ut_anything('statustext') ; return $error if $error; |