From fac2173d1cde3889d6f1bfed2b8b33e3f190f777 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Wed, 28 Jan 2015 03:35:38 -0800 Subject: fix throwing an error message trying to throw an error message about invalid email address, RT#29311 --- FS/FS/contact_email.pm | 1 + 1 file changed, 1 insertion(+) 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 -- cgit v1.2.1 From 764f8f4bb0185d7aa03676c795f84094b378b286 Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Wed, 28 Jan 2015 11:02:38 -0800 Subject: fix quotations vs. previous_invoice_history --- FS/FS/prospect_main.pm | 5 +++++ 1 file changed, 5 insertions(+) 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 -- cgit v1.2.1