summaryrefslogtreecommitdiff
path: root/FS/FS/cust_pay.pm
diff options
context:
space:
mode:
authorivan <ivan>2007-06-29 01:42:11 +0000
committerivan <ivan>2007-06-29 01:42:11 +0000
commitf0547b5c6821995268ae3a68dbc80eef08885b77 (patch)
treeb56ac9cf8a37ed8e562d4a3e8ba589227c73d11b /FS/FS/cust_pay.pm
parentc4f2fbb56b1eb503b6070ed3eac9b550b94dc410 (diff)
silly missing parenthesis
Diffstat (limited to 'FS/FS/cust_pay.pm')
-rw-r--r--FS/FS/cust_pay.pm2
1 files changed, 1 insertions, 1 deletions
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
}