diff options
author | Alex Brelsfoard <alex@freeside.biz> | 2015-01-28 14:44:00 -0500 |
---|---|---|
committer | Alex Brelsfoard <alex@freeside.biz> | 2015-01-28 14:44:00 -0500 |
commit | 42e878b29ae26943d7dc3acfbb7f095a56ae0a2f (patch) | |
tree | a0158f8e71bcf6a0f8fa06995ae1528c2ee344dd | |
parent | 063d9f211aa19a26755279ad7277648cfdae6313 (diff) | |
parent | 764f8f4bb0185d7aa03676c795f84094b378b286 (diff) |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
-rw-r--r-- | FS/FS/contact_email.pm | 1 | ||||
-rw-r--r-- | FS/FS/prospect_main.pm | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/FS/FS/contact_email.pm b/FS/FS/contact_email.pm index a0ff27393..8d6bbbf6f 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 ); =head1 NAME diff --git a/FS/FS/prospect_main.pm b/FS/FS/prospect_main.pm index f30508d34..b160343de 100644 --- a/FS/FS/prospect_main.pm +++ b/FS/FS/prospect_main.pm @@ -405,6 +405,11 @@ sub search { } +# stub this so that calling ->cust_bill doesn't return an empty string +sub cust_bill { + return; +} + =back =head1 BUGS |