From: ivan Date: Fri, 29 Jun 2007 01:42:11 +0000 (+0000) Subject: silly missing parenthesis X-Git-Tag: TRIXBOX_2_6~473 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=f0547b5c6821995268ae3a68dbc80eef08885b77 silly missing parenthesis --- diff --git a/FS/FS/cust_pay.pm b/FS/FS/cust_pay.pm index dc6bd4020..0ead22658 100644 --- a/FS/FS/cust_pay.pm +++ b/FS/FS/cust_pay.pm @@ -420,7 +420,7 @@ sub check { # UNIQUE index should catch this too, without race conditions, but this # should give a better error message the other 99.9% of the time... if ( length($self->payunique) - && qsearchs('cust_pay', { 'payunique' => $self->payunique } ) { + && qsearchs('cust_pay', { 'payunique' => $self->payunique } ) ) { return "duplicate transaction"; #well, it *could* be a better error message }