diff options
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/UI/Web/small_custview.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/FS/FS/UI/Web/small_custview.pm b/FS/FS/UI/Web/small_custview.pm index 5da2ed096..4c705c159 100644 --- a/FS/FS/UI/Web/small_custview.pm +++ b/FS/FS/UI/Web/small_custview.pm @@ -1,10 +1,15 @@ package FS::UI::Web::small_custview; use strict; +use vars qw(@EXPORT_OK @ISA); +use Exporter; use FS::Msgcat; use FS::Record qw(qsearchs); use FS::cust_main; +@ISA = qw(Exporter); +@EXPORT_OK = qw( small_custview ); + =item small_custview CUSTNUM || CUST_MAIN_OBJECT, COUNTRYDEFAULT, NOBALANCE_FLAG, URL Sheesh. I did switch to mason, but this is still hanging around. Figure out |