diff options
author | Mark Wells <mark@freeside.biz> | 2015-03-10 11:51:05 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-03-10 11:51:37 -0700 |
commit | 3244e4dcb9d88c728f3bfa1294b3f78cb7a96a20 (patch) | |
tree | f4c9e44bf697db03f8893ec07f586e4474aed518 /httemplate/misc/process | |
parent | ffc85003aebc38056eb30fa9580b6395c92c0ee0 (diff) |
unbreak "future resume" UI, #33875
Diffstat (limited to 'httemplate/misc/process')
-rwxr-xr-x | httemplate/misc/process/cancel_pkg.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/process/cancel_pkg.html b/httemplate/misc/process/cancel_pkg.html index 47ceca23b..c7a43979d 100755 --- a/httemplate/misc/process/cancel_pkg.html +++ b/httemplate/misc/process/cancel_pkg.html @@ -67,7 +67,7 @@ my $cust_pkg = qsearchs( 'cust_pkg', {'pkgnum'=>$pkgnum} ); #untaint reasonnum, and set up new reason if appropriate my ($reasonnum, $error); -if ($method ne 'resume' and $method ne 'uncancel') { +if ($method ne 'unsuspend' and $method ne 'uncancel') { ($reasonnum, $error) = $m->comp('elements/reason'); if (!$reasonnum) { $error ||= 'Reason required'; |