diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-12-24 17:35:44 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-12-24 17:35:44 -0800 |
commit | d3c4d0df775c4dc2f8346ac29b7075753216bcb5 (patch) | |
tree | 4094bf5a90138d50a3b470feae3aef0323c20a0b | |
parent | dbe3f0addc4b75de57b988004a1be49bf8af9904 (diff) |
fix recharge links with prepaid cards, RT#26664
-rw-r--r-- | fs_selfservice/FS-SelfService/cgi/myaccount_menu.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/myaccount_menu.html b/fs_selfservice/FS-SelfService/cgi/myaccount_menu.html index 38e525772..71f507010 100644 --- a/fs_selfservice/FS-SelfService/cgi/myaccount_menu.html +++ b/fs_selfservice/FS-SelfService/cgi/myaccount_menu.html @@ -48,7 +48,7 @@ if ( $balance > 0 ) { #XXXFIXME "enable selfservice prepay features" flag or som } } - if ( exists( $payby_mode{PREP} ) ) { + if ( exists( $payby_mode{PREPAY} ) ) { push @menu, { title => 'Recharge my account with a prepaid card', url => 'recharge_prepay', indent => 2, |