From: Paul Poulain <[email protected]> There was an improper T::T <input> construction: the note value contained spaces.
This patch fixes the problem by using a correct [% IF %] construction Signed-off-by: Nicole C. Engard <[email protected]> --- .../intranet-tmpl/prog/en/modules/members/pay.tt | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt index 4f04ba7..ddc3d41 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt @@ -64,10 +64,10 @@ <td>[% loop_pa.description %] [% loop_pa.title |html %]</td> <td> [% IF ( loop_pa.net_balance ) %] - <input type="text" name="note[% loop_pa.i %]" value=" + <input type="text" name="note[% loop_pa.i %]" value="[% loop_pa.note %]" /> + [% ELSE %] + [% loop_pa.note %] [% END %] - [% loop_pa.note %] - [% IF ( loop_pa.net_balance ) %]" />[% END %] </td> <td>[% loop_pa.accounttype %]</td> <td>[% loop_pa.notify_id %]</td> -- 1.7.2.3 _______________________________________________ Koha-patches mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
