diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-08-28 11:50:25 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-08-28 11:50:25 -0400 |
commit | 5ead832579f92d08a6ed31b967925a980f99c249 (patch) | |
tree | d3c8f53c93413590cedfe659f41600f35c75a9b2 /httemplate/edit/process/deploy_zone-mobile.html | |
parent | 23c80f76dae49785318a5dac440558977a05c17c (diff) |
RT# 77200 - Changed fixed active date to a user input date
Diffstat (limited to 'httemplate/edit/process/deploy_zone-mobile.html')
-rw-r--r-- | httemplate/edit/process/deploy_zone-mobile.html | 4 |
1 files changed, 4 insertions, 0 deletions
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> |