diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-12-13 21:27:59 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-12-13 21:27:59 +0000 |
commit | 03bfa825f47a35ff8fac5c9a0ffa95107687901c (patch) | |
tree | b34647425df248a3ca0699f7b59ec7b7c131883e /UI/payments/check_job.html | |
parent | 536b29fa6ca68c26012785df5ad6807ce96acc40 (diff) |
Added a routine to sanitize the CGI variables. Needed for some CSV exports routines.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1978 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI/payments/check_job.html')
-rw-r--r-- | UI/payments/check_job.html | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/UI/payments/check_job.html b/UI/payments/check_job.html index 18f786cc..b59caeab 100644 --- a/UI/payments/check_job.html +++ b/UI/payments/check_job.html @@ -6,7 +6,7 @@ ] titlebar = text('Checking Job') # ' refresh = { - url = "payment.pl?job_id=${job_id}&account_class=${account_class}" + url = "payment.pl?job_id=${job_id}&account_class=${account_class}&action=check_job" delay = 20 } ?> @@ -18,19 +18,17 @@ ELSE; text('Status: Complete'); END ?></div> - <?lsmb IF job.completed ?> + <?lsmb IF ! job.completed ?> <div class="info"> <?lsmb IF job.success; text('Completed Successfully'); ELSE; text('Job Failed'); END ?></div> - <?lsmb IF ! job.success ?> <div class="info"> <?lsmb text('Error:') ?><br /> <?lsmb job.error_condition ?> </div> - <?lsmb END # if ! job.success ?> <?lsmb END # if job.completed ?> </body> </html> |