From: Owen Leonard <[email protected]> The values in the menu come straight out of GetAuthorisedValues(), which sorts its results by "category, lib, lib_opac." Rather than trying to re-sort the data in circulation.pl this patch changes the template to show 'lib,' the description, instead of the authorised_value. That will make the output match the column which is being sorted.
Signed-off-by: Nicole C. Engard <[email protected]> --- .../prog/en/modules/circ/circulation.tt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index d2f6405..cb03d89 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -207,7 +207,7 @@ function refocus(calendar) { <select name="type" id="type" onchange="this.form.borrower_message.value=this.options[this.selectedIndex].value;"> <option value="">Select Note</option> [% FOREACH canned_bor_notes_loo IN canned_bor_notes_loop %] - <option value="[% canned_bor_notes_loo.lib %]">[% canned_bor_notes_loo.authorised_value %]</option> + <option value="[% canned_bor_notes_loo.lib %]">[% canned_bor_notes_loo.lib %]</option> [% END %] </select> </li> -- 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/
