diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-01-28 03:35:50 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-01-28 03:35:50 -0800 |
commit | 23b594474ce15953c71ebd2d849cf7ad67d7f5a5 (patch) | |
tree | 245dabc1b17c7fa880a413ad6390d81b8ff3e183 | |
parent | 8706262a6d18ef5103fb5972ca6443b73e700e6a (diff) |
fix throwing an error message trying to throw an error message about invalid email address, RT#29311
-rw-r--r-- | FS/FS/contact_email.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/contact_email.pm b/FS/FS/contact_email.pm index 4f787358b..d3e4fb13b 100644 --- a/FS/FS/contact_email.pm +++ b/FS/FS/contact_email.pm @@ -2,6 +2,7 @@ package FS::contact_email; use base qw( FS::Record ); use strict; +use FS::Msgcat qw( gettext ); use FS::Record qw( qsearch qsearchs ); use FS::contact; |