[freeside-commits] freeside/fs_selfservice/FS-SelfService/cgi myaccount.html, 1.15, 1.16 myaccount_menu.html, 1.13, 1.14
Ivan,,,
ivan at wavetail.420.am
Sun Oct 11 23:48:46 PDT 2009
Update of /home/cvs/cvsroot/freeside/fs_selfservice/FS-SelfService/cgi
In directory wavetail.420.am:/tmp/cvs-serv11813/fs_selfservice/FS-SelfService/cgi
Modified Files:
myaccount.html myaccount_menu.html
Log Message:
fix inadvertant "unknown package" error, fallout from pkg-balance work, RT#6125
Index: myaccount.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/fs_selfservice/FS-SelfService/cgi/myaccount.html,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- myaccount.html 10 Aug 2009 11:50:03 -0000 1.15
+++ myaccount.html 12 Oct 2009 06:48:43 -0000 1.16
@@ -4,7 +4,7 @@
Hello <%= $name %>!<BR><BR>
<%= $small_custview %>
<BR>
-<%= if ( $pkgnum ) {
+<%= if ( $access_pkgnum ) {
$OUT .= qq!Balance: <B>\$$balance</B><BR><BR>!;
}
'';
Index: myaccount_menu.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/fs_selfservice/FS-SelfService/cgi/myaccount_menu.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- myaccount_menu.html 10 Aug 2009 11:50:03 -0000 1.13
+++ myaccount_menu.html 12 Oct 2009 06:48:43 -0000 1.14
@@ -13,7 +13,7 @@
{ title=>'Purchase', size=>'+1', },
);
-unless ( $pkgnum ) {
+unless ( $access_pkgnum ) {
push @menu,
{ title=>'Purchase additional package',
url=>'customer_order_pkg', 'indent'=>2 };
@@ -57,7 +57,7 @@
{ title=>'View my usage', url=>'view_usage', size=>'+1', },
;
-unless ( $pkgnum ) {
+unless ( $access_pkgnum ) {
push @menu,
{ title=>'Setup my services', url=>'provision', size=>'+1', },
;
@@ -69,7 +69,7 @@
push @menu,
{ title=>'Change my information', size=>'+1', };
-unless ( $pkgnum ) {
+unless ( $access_pkgnum ) {
push @menu,
{ title=>'Change billing address', url=>'change_bill', indent=>2 },
{ title=>'Change service address', url=>'change_ship', indent=>2 },
More information about the freeside-commits
mailing list