summaryrefslogtreecommitdiff
path: root/httemplate/edit
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2019-04-30 08:42:20 -0400
committerChristopher Burger <burgerc@freeside.biz>2019-04-30 14:08:00 -0400
commit83ac586a5c6fb9f0c7df725df87257552f56331e (patch)
tree951d9097b2305f244a28ea894a0d582c0f65a060 /httemplate/edit
parent1c3b548f575b3313d9a93b391751f6ce719b0b6d (diff)
RT# 83211 - Added service export error test report
Diffstat (limited to 'httemplate/edit')
-rw-r--r--httemplate/edit/process/elements/process.html8
1 files changed, 7 insertions, 1 deletions
diff --git a/httemplate/edit/process/elements/process.html b/httemplate/edit/process/elements/process.html
index e332957eb..1b9318725 100644
--- a/httemplate/edit/process/elements/process.html
+++ b/httemplate/edit/process/elements/process.html
@@ -473,7 +473,13 @@ foreach my $value ( @values ) {
if ( $error ) {
- $cgi->param('error', $error);
+ if ($opt{'update_svc'}) {
+ my $encoded_error = encode_base64($error);
+ $cgi->param('error_link', $encoded_error);
+ } else {
+ $cgi->param('error', $error);
+ }
+
if ( $opt{'clear_on_error'} && scalar(@{$opt{'clear_on_error'}}) ) {
foreach my $field (@{$opt{'clear_on_error'}}) {
$cgi->param($field, '')