diff options
author | jeff <jeff> | 2007-06-26 15:37:19 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-06-26 15:37:19 +0000 |
commit | c8f56207c0c8ee26b62824064e59d5952c20f70b (patch) | |
tree | fb0ebf505a870db499ae7517a1beae6c72febe23 /httemplate/misc/cancel_pkg.html | |
parent | bd8582f48b90a63c17a568e4a395a82fe4f9277e (diff) |
suspend later just like expire (#1487)
Diffstat (limited to 'httemplate/misc/cancel_pkg.html')
-rwxr-xr-x | httemplate/misc/cancel_pkg.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/httemplate/misc/cancel_pkg.html b/httemplate/misc/cancel_pkg.html index e61000618..b085d2281 100755 --- a/httemplate/misc/cancel_pkg.html +++ b/httemplate/misc/cancel_pkg.html @@ -23,9 +23,9 @@ <% ucfirst($method) . " $pkgnum: " .$part_pkg->pkg. ' - ' .$part_pkg->comment %> <% ntable("#cccccc", 2) %> -% if ($method eq 'expire') { +% if ($method eq 'expire' || $method eq 'adjourn') { <TR> - <TD>Cancel package on </TD> + <TD><% $submit =~ /^(\w*)\s/ %> package on </TD> <TD><INPUT TYPE="text" NAME="date" ID="expire_date" VALUE="<% $date %>"> <IMG SRC="<% $p %>images/calendar.png" ID="expire_button" STYLE="cursor:pointer" TITLE="Select date"> <BR><I>m/d/y</I> @@ -77,7 +77,10 @@ if ($method eq 'cancel') { $submit = "Cancel Later"; }elsif ($method eq 'suspend') { $class = 'S'; - $submit = "Suspend"; + $submit = "Suspend Now"; +}elsif ($method eq 'adjourn') { + $class = 'S'; + $submit = "Suspend Later"; }else{ die "illegal query ". $cgi->keywords; } |