[freeside-commits] freeside/fs_selfservice/FS-SelfService/cgi myaccount.html, 1.15, 1.15.2.1 myaccount_menu.html, 1.13, 1.13.2.1

Ivan,,, ivan at wavetail.420.am
Sun Oct 11 23:48:16 PDT 2009


Update of /home/cvs/cvsroot/freeside/fs_selfservice/FS-SelfService/cgi
In directory wavetail.420.am:/tmp/cvs-serv11815/fs_selfservice/FS-SelfService/cgi

Modified Files:
      Tag: FREESIDE_1_9_BRANCH
	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.15.2.1
diff -u -d -r1.15 -r1.15.2.1
--- myaccount.html	10 Aug 2009 11:50:03 -0000	1.15
+++ myaccount.html	12 Oct 2009 06:48:13 -0000	1.15.2.1
@@ -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.13.2.1
diff -u -d -r1.13 -r1.13.2.1
--- myaccount_menu.html	10 Aug 2009 11:50:03 -0000	1.13
+++ myaccount_menu.html	12 Oct 2009 06:48:13 -0000	1.13.2.1
@@ -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