diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2019-04-28 19:14:49 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2019-04-30 13:23:31 -0400 |
| commit | 710841aeba1632f57ab34d4e2abce3d65b531f69 (patch) | |
| tree | e78b9373b9d34bdc6f3cb0a1f8bfa14fe9abdb12 /httemplate/edit/process | |
| parent | 69a13395159bf8df783d74cbcb5f9444e1a946d5 (diff) | |
RT# 83204 - added link to service or tower causing error.
Conflicts:
httemplate/misc/progress-popup.html
Diffstat (limited to 'httemplate/edit/process')
| -rw-r--r-- | httemplate/edit/process/elements/process.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/httemplate/edit/process/elements/process.html b/httemplate/edit/process/elements/process.html index e954d0b47..4356621ed 100644 --- a/httemplate/edit/process/elements/process.html +++ b/httemplate/edit/process/elements/process.html @@ -486,7 +486,11 @@ if ($class eq "FS::tower" && !$error) { $error = $export_tower->{'error'} if $export_tower; } } - $cgi->param('error', $error) if $error; + if ($error) { + my $encoded_error = encode_base64($error); + $cgi->param('error_link', $encoded_error) if $error; + + } } # set up redirect URLs |
