View | Details | Raw Unified | Return to bug 30200
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/Bug_30200-Add_ILLRequestsTabs.pl (-2 / +2 lines)
Lines 2-14 use Modern::Perl; Link Here
2
2
3
return {
3
return {
4
    bug_number => "30200",
4
    bug_number => "30200",
5
    description => "Add customizable tabs to interlibrary loan requests list",
5
    description => "Add ILLRequestsTabs system preference",
6
    up => sub {
6
    up => sub {
7
        my ($args) = @_;
7
        my ($args) = @_;
8
        my ($dbh, $out) = @$args{qw(dbh out)};
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
        # Do you stuffs here
9
        # Do you stuffs here
10
        $dbh->do(q{
10
        $dbh->do(q{
11
            INSERT INTO `systempreferences`
11
            INSERT IGNORE INTO `systempreferences`
12
                (variable,value,options,explanation,type)
12
                (variable,value,options,explanation,type)
13
            VALUES
13
            VALUES
14
                ('ILLRequestsTabs','','','Add customizable tabs to interlibrary loan requests list','Textarea');
14
                ('ILLRequestsTabs','','','Add customizable tabs to interlibrary loan requests list','Textarea');
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-2 / +1 lines)
Lines 1135-1141 Circulation: Link Here
1135
                  1: block
1135
                  1: block
1136
                  0: allow
1136
                  0: allow
1137
            - renewing of items from the staff interface and via the <code>misc/cronjobs/automatic_renewals.pl</code> cronjob.
1137
            - renewing of items from the staff interface and via the <code>misc/cronjobs/automatic_renewals.pl</code> cronjob.
1138
    Fines policy:
1138
    Fines Policy:
1139
        -
1139
        -
1140
            - pref: finesCalendar
1140
            - pref: finesCalendar
1141
              type: choice
1141
              type: choice
1142
- 

Return to bug 30200