@@ -, +, @@ - switch on the IndependentBranches pref - try to change the library for a notice. Before the patch, no change is --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt @@ -15,14 +15,16 @@ $(document).ready(function() { ], "bPaginate": false })); - $('#branch').change(function() { + [% IF no_op_set %] + $('#branch').change(function() { $('#op').val(""); $('#selectlibrary').submit(); - }); - $('#newnotice').click(function() { + }); + $('#newnotice').click(function() { $('#op').val("add_form"); return true; - }); + }); + [% END %] }); [% IF ( add_form ) %] --