summaryrefslogtreecommitdiff
path: root/httemplate/edit/process
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2017-08-28 11:50:25 -0400
committerChristopher Burger <burgerc@freeside.biz>2017-08-29 07:26:23 -0400
commitaa0e7222dae7df139688480534cb3cd10c84e227 (patch)
treedfcabe4ae809d99b3aab725506112c4e5f0616b1 /httemplate/edit/process
parent9c036d4afb4f0709e7baf6e94931262a88573701 (diff)
RT# 77200 - Changed fixed active date to a user input date
Diffstat (limited to 'httemplate/edit/process')
-rw-r--r--httemplate/edit/process/deploy_zone-fixed.html4
-rw-r--r--httemplate/edit/process/deploy_zone-mobile.html4
2 files changed, 8 insertions, 0 deletions
diff --git a/httemplate/edit/process/deploy_zone-fixed.html b/httemplate/edit/process/deploy_zone-fixed.html
index 0033bbe52..b22e63066 100644
--- a/httemplate/edit/process/deploy_zone-fixed.html
+++ b/httemplate/edit/process/deploy_zone-fixed.html
@@ -28,6 +28,10 @@ my $precheck_callback = sub {
$i++;
}
}
+ if ( length $cgi->param('active_date') ) {
+ my $date = parse_datetime( $cgi->param('active_date') );
+ $cgi->param('active_date', $date);
+ }
'';
};
</%init>
diff --git a/httemplate/edit/process/deploy_zone-mobile.html b/httemplate/edit/process/deploy_zone-mobile.html
index d36d5d448..9b205ab6e 100644
--- a/httemplate/edit/process/deploy_zone-mobile.html
+++ b/httemplate/edit/process/deploy_zone-mobile.html
@@ -21,6 +21,10 @@ my $precheck_callback = sub {
$i++;
}
}
+ if ( length $cgi->param('active_date') ) {
+ my $date = parse_datetime( $cgi->param('active_date') );
+ $cgi->param('active_date', $date);
+ }
'';
};
</%init>