diff options
-rw-r--r-- | fs_selfservice/FS-SelfService/cgi/myaccount.html | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/myaccount.html b/fs_selfservice/FS-SelfService/cgi/myaccount.html index d8bfe0cb1..f48fdedea 100644 --- a/fs_selfservice/FS-SelfService/cgi/myaccount.html +++ b/fs_selfservice/FS-SelfService/cgi/myaccount.html @@ -7,14 +7,11 @@ </TD><TD VALIGN="top"> Hello <%= $name %>!<BR><BR> -Your contact information<BR><%= $small_custview %> +<%= $small_custview %> <BR> -<%= if ( $balance ) { - $OUT .= qq! <B><A HREF="${url}make_payment">Make a $balance payment</A></B>!; +<%= if ( $balance > 0 ) { + $OUT .= qq! <B><A HREF="${url}make_payment">Make a payment</A></B><BR><BR>!; } %> -<BR><BR> -<!--<TABLE BORDER=1 CELLSPACING=0 CELLPADDING=2 BORDERCOLOR="#999999"> -<TR><TH>Invoice</TH><TH>Date</TH><TH>Owed</TH></TR>--> <%= if ( @open_invoices ) { $OUT .= '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 BGCOLOR="#eeeeee">'. |