View | Details | Raw Unified | Return to bug 5754
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tmpl (-1 / +1 lines)
Lines 101-107 $.tablesorter.addParser({ Link Here
101
		<div class="dialog alert">
101
		<div class="dialog alert">
102
        <ul>
102
        <ul>
103
            <!-- TMPL_IF NAME="debarred" -->
103
            <!-- TMPL_IF NAME="debarred" -->
104
                <li><strong>Please note:</strong> Your account has been frozen. Usually the reason for freezing an account is old overdues or damage fees.If <a href="/cgi-bin/koha/opac-user.pl">your account page</a> shows your account to be clear, please consult a librarian.</li>
104
                <li><strong>Please note:</strong> Your account has been frozen until <!-- TMPL_VAR name="debarred" --> - <!-- TMPL_VAR name="debarredcomment" -->. Usually the reason for freezing an account is old overdues or damage fees.If <a href="/cgi-bin/koha/opac-user.pl">your account page</a> shows your account to be clear, please consult a librarian.</li>
105
            <!-- /TMPL_IF -->
105
            <!-- /TMPL_IF -->
106
            <!-- TMPL_IF NAME="gonenoaddress" -->
106
            <!-- TMPL_IF NAME="gonenoaddress" -->
107
                <li><strong>Please note:</strong> According to our records, we don't have up-to-date <a href="/cgi-bin/koha/opac-userdetails.pl">contact information</a> on file.  Please contact your librarian<!-- TMPL_IF NAME="OPACPatronDetails" --> or use the <a href="/cgi-bin/koha/opac-userupdate.pl">online update form</a> to submit current information (<em>Please note:</em> there may be a delay in restoring your account if you submit online)<!-- /TMPL_IF -->.</li>
107
                <li><strong>Please note:</strong> According to our records, we don't have up-to-date <a href="/cgi-bin/koha/opac-userdetails.pl">contact information</a> on file.  Please contact your librarian<!-- TMPL_IF NAME="OPACPatronDetails" --> or use the <a href="/cgi-bin/koha/opac-userupdate.pl">online update form</a> to submit current information (<em>Please note:</em> there may be a delay in restoring your account if you submit online)<!-- /TMPL_IF -->.</li>
(-)a/opac/opac-user.pl (-1 / +1 lines)
Lines 87-92 if ( $borr->{'amountoutstanding'} < 0 ) { Link Here
87
}
87
}
88
88
89
$borr->{'amountoutstanding'} = sprintf "%.02f", $borr->{'amountoutstanding'};
89
$borr->{'amountoutstanding'} = sprintf "%.02f", $borr->{'amountoutstanding'};
90
$borr->{debarred} = C4::Dates->new($borr->{debarred},'iso')->output;
90
91
91
my @bordat;
92
my @bordat;
92
$bordat[0] = $borr;
93
$bordat[0] = $borr;
93
- 

Return to bug 5754