From: ivan Date: Fri, 19 Sep 2003 12:04:05 +0000 (+0000) Subject: oops, flipped an or to an and X-Git-Tag: NET_WHOIS_RAW_0_31~398 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=26ae12d61653a5673359fb0b995a70a4a76d7675 oops, flipped an or to an and --- diff --git a/FS/FS/ClientAPI/Signup.pm b/FS/FS/ClientAPI/Signup.pm index 8f6dc2949..f3dcfa3b2 100644 --- a/FS/FS/ClientAPI/Signup.pm +++ b/FS/FS/ClientAPI/Signup.pm @@ -60,7 +60,7 @@ sub signup_info { if ( $conf->config('signup_server-default_agentnum') - || !exists $signup_info->{'part_pkg'} #cache for performance + && !exists $signup_info->{'part_pkg'} #cache for performance ) { my $agentnum = $conf->config('signup_server-default_agentnum'); my $agent = qsearchs( 'agent', { 'agentnum' => $agentnum } )