diff options
| author | ivan <ivan> | 2008-05-28 10:45:41 +0000 |
|---|---|---|
| committer | ivan <ivan> | 2008-05-28 10:45:41 +0000 |
| commit | 358300f76229098ca4795e542cf187aeb429f44f (patch) | |
| tree | 6c50071558df9cfbd046d9d8ee1345e27b49e062 | |
| parent | 4999fc571382b56e038aa2fce5e9424fe7e9cf4c (diff) | |
mailgate realiability fix: don't bomb out when FS dbdef hasn't been initialized yet (& need to import adminsuidsetup)
| -rw-r--r-- | htetc/handler.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/htetc/handler.pl b/htetc/handler.pl index 82a0d7abd..3d0f359d8 100644 --- a/htetc/handler.pl +++ b/htetc/handler.pl @@ -130,7 +130,9 @@ sub handler use Locale::Country; use Business::US::USPS::WebTools::AddressStandardization; use FS; - use FS::UID qw(cgisuidsetup dbh getotaker datasrc driver_name); + use FS::UID qw( adminsuidsetup cgisuidsetup getotaker + dbh datasrc driver_name + ); use FS::Record qw(qsearch qsearchs fields dbdef str2time_sql); use FS::Conf; use FS::CGI qw(header menubar popurl rooturl table itable ntable idiot |
