diff options
Diffstat (limited to 'fs_selfservice')
| -rwxr-xr-x | fs_selfservice/FS-SelfService/cgi/customer_order_pkg.html | 8 | ||||
| -rw-r--r-- | fs_selfservice/FS-SelfService/cgi/do_process_forgot_password.html | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/customer_order_pkg.html b/fs_selfservice/FS-SelfService/cgi/customer_order_pkg.html index 5fcf77fac..f16de7761 100755 --- a/fs_selfservice/FS-SelfService/cgi/customer_order_pkg.html +++ b/fs_selfservice/FS-SelfService/cgi/customer_order_pkg.html @@ -1,5 +1,11 @@ <%= include('header', 'Purchase additional package') %> -<%= include('order_pkg') %> +<%= if (grep $_ eq 'Purchase additional package', @menu_disable){ + $OUT .= "This functionality has been disabled"; +} else { + +include('order_pkg') + +} %> <%= include('footer') %> diff --git a/fs_selfservice/FS-SelfService/cgi/do_process_forgot_password.html b/fs_selfservice/FS-SelfService/cgi/do_process_forgot_password.html index 35728e7ec..5a0104393 100644 --- a/fs_selfservice/FS-SelfService/cgi/do_process_forgot_password.html +++ b/fs_selfservice/FS-SelfService/cgi/do_process_forgot_password.html @@ -11,7 +11,7 @@ <%= if (!$error) { $selfurl =~ s/\?.*//; - $OUT .= "Your password has been changed. You can now <A HREF=\"$selfurl\">log in</A>."; + $OUT .= "Your password has been changed. You can now <A HREF=\"$selfurl?agentnum=$agentnum\">log in</A>."; } %> |
