From d2bcbc27dcf98be7d183aa8e71b029a647e6200c Mon Sep 17 00:00:00 2001 From: Christopher Burger Date: Mon, 28 Aug 2017 11:50:25 -0400 Subject: RT# 77200 - Changed fixed active date to a user input date --- httemplate/edit/process/deploy_zone-fixed.html | 4 ++++ httemplate/edit/process/deploy_zone-mobile.html | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'httemplate/edit/process') 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); + } ''; }; 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); + } ''; }; -- cgit v1.2.1