From: ivan Date: Tue, 13 Apr 2004 22:30:48 +0000 (+0000) Subject: remove dependancy on Net::Whois that wasn't being used anyway X-Git-Tag: BEFORE_FINAL_MASONIZE~1146 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=bf5454270048ebe558276d9fba7588c48d461a3d;hp=df33a04853368c1ccb95ea1718b1ebad93b78672;ds=sidebyside remove dependancy on Net::Whois that wasn't being used anyway --- diff --git a/FS/FS/svc_domain.pm b/FS/FS/svc_domain.pm index 4dd6342c7..b713e3e95 100644 --- a/FS/FS/svc_domain.pm +++ b/FS/FS/svc_domain.pm @@ -7,7 +7,7 @@ use vars qw( @ISA $whois_hack $conf ); use Carp; use Date::Format; -use Net::Whois 1.0; +#use Net::Whois::Raw; use FS::Record qw(fields qsearch qsearchs dbh); use FS::Conf; use FS::svc_Common; @@ -386,15 +386,16 @@ sub catchall_svc_acct { =item whois -Returns the Net::Whois::Domain object (see L) for this domain, or -undef if the domain is not found in whois. +# Returns the Net::Whois::Domain object (see L) for this domain, or +# undef if the domain is not found in whois. (If $FS::svc_domain::whois_hack is true, returns that in all cases instead.) =cut sub whois { - $whois_hack or new Net::Whois::Domain $_[0]->domain; + #$whois_hack or new Net::Whois::Domain $_[0]->domain; + $whois_hack or die "whois_hack not set...\n"; } =item _whois