@@ -, +, @@ description --- .../data/mysql/atomicupdate/Bug_30200-Add_ILLRequestsTabs.pl | 4 ++-- .../prog/en/modules/admin/preferences/circulation.pref | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) --- a/installer/data/mysql/atomicupdate/Bug_30200-Add_ILLRequestsTabs.pl +++ a/installer/data/mysql/atomicupdate/Bug_30200-Add_ILLRequestsTabs.pl @@ -2,13 +2,13 @@ use Modern::Perl; return { bug_number => "30200", - description => "Add customizable tabs to interlibrary loan requests list", + description => "Add ILLRequestsTabs system preference", up => sub { my ($args) = @_; my ($dbh, $out) = @$args{qw(dbh out)}; # Do you stuffs here $dbh->do(q{ - INSERT INTO `systempreferences` + INSERT IGNORE INTO `systempreferences` (variable,value,options,explanation,type) VALUES ('ILLRequestsTabs','','','Add customizable tabs to interlibrary loan requests list','Textarea'); --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref @@ -996,12 +996,12 @@ Circulation: class: multi - (separated with |). If left empty, all installed backends will be enabled. - - - "Add customizable tabs to interlibrary loan requests list:" + - "Add customizable tabs to the interlibrary loan requests list:" - pref: ILLRequestsTabs syntax: text/x-yaml class: code type: textarea - - "This is a list that defines tab names and statuses that will be sorted under that tab.

" + - "This allows to define tabs with their description and linked ILL request statuses that will appear under the tab.

" - "Examples:
" - "
- name: Closed
" - "
  status:
" --