diff options
-rwxr-xr-x | LedgerSMB/IS.pm | 2 | ||||
-rwxr-xr-x | LedgerSMB/User.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/LedgerSMB/IS.pm b/LedgerSMB/IS.pm index 034835ff..ad1f1c27 100755 --- a/LedgerSMB/IS.pm +++ b/LedgerSMB/IS.pm @@ -20,7 +20,7 @@ # Web: http://www.sql-ledger.org # # Contributors: Jim Rawlings <jim@your-dba.com> -#` +# #====================================================================== # # This file has undergone whitespace cleanup. diff --git a/LedgerSMB/User.pm b/LedgerSMB/User.pm index 7ef25547..cbdb0c41 100755 --- a/LedgerSMB/User.pm +++ b/LedgerSMB/User.pm @@ -460,7 +460,7 @@ sub process_query { $ENV{PGHOST} = $form->{dbhost}; $ENV{PGPORT} = $form->{dbport}; - $results = `psql -f $filename 2>&1`; + $results = system('psql -f $filename 2>&1'); if ($?) { $form->error($!); } |