diff options
author | ivan <ivan> | 2011-06-27 23:20:36 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-06-27 23:20:36 +0000 |
commit | adba6f962927027aed98e784c4be897e0275f989 (patch) | |
tree | c11a4a75e0e2fe25c33fdb5051d72d5ee9856194 | |
parent | 4922d37f9bc96ab24c04441c00575f669c5653de (diff) |
check cust_main.edit_subject, RT#13199
-rw-r--r-- | FS/FS/cust_main.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index b9e95091c..426551678 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -1686,6 +1686,7 @@ sub check { || $self->ut_floatn('cdr_termination_percentage') || $self->ut_floatn('credit_limit') || $self->ut_numbern('billday') + || $self->ut_enum('edit_subject', [ '', 'Y' ] ) ; #barf. need message catalogs. i18n. etc. |