@@ -, +, @@ - Fixes capitalization of the sub heading "Displaying ... terms" - Fixes button label of "Test" - Look at all, approved, rejected, pending tags and check the line below the heading "Tags" - "Displaying..." - Check a term using the search box on the left side Before the patch: Test - Processing... - test After the patch this should be Test again in the end. --- koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt @@ -74,7 +74,7 @@ tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } var success_test_call = function() { $('#test_button').removeAttr("disabled"); - $('#test_button').attr("value","test"); + $('#test_button').attr("value","Test"); }; $(document).ready(function() { $('.ajax_buttons' ).css({visibility:"visible"}); @@ -173,11 +173,11 @@ tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; }

Tags

Displaying - [% IF ( filter_approved_all ) %]ALL[% END %] - [% IF ( filter_approved_ok ) %]Approved[% END %] - [% IF ( filter_approved_pending ) %]Pending[% END %] - [% IF ( filter_approved_rej ) %]Rejected[% END %] - Terms + [% IF ( filter_approved_all ) %]all[% END %] + [% IF ( filter_approved_ok ) %]approved[% END %] + [% IF ( filter_approved_pending ) %]pending[% END %] + [% IF ( filter_approved_rej ) %]rejected[% END %] + terms

[% IF ( op_count ) %] --