diff options
author | ivan <ivan> | 2006-03-08 08:21:37 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-03-08 08:21:37 +0000 |
commit | 5809a99d862a6bd0da6742479f18728aae8216a2 (patch) | |
tree | bfc1a4d2ee45e6cc76cb569c0652a3439eeb4d3a /FS | |
parent | 02ffd747f8cbc05815c0d96f437c507cfac04ba6 (diff) |
add space in error msg
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/agent.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/agent.pm b/FS/FS/agent.pm index 83f0ce5b5..849dafa2a 100644 --- a/FS/FS/agent.pm +++ b/FS/FS/agent.pm @@ -195,7 +195,7 @@ sub num_sql { my( $self, $sql ) = @_; my $statement = "SELECT COUNT(*) FROM cust_main WHERE agentnum = ? AND $sql"; my $sth = dbh->prepare($statement) or die dbh->errstr." preparing $statement"; - $sth->execute($self->agentnum) or die $sth->errstr. "executing $statement"; + $sth->execute($self->agentnum) or die $sth->errstr. " executing $statement"; $sth->fetchrow_arrayref->[0]; } |