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

(-)a/installer/data/mysql/atomicupdate/bug_15565.pl (-1 / +19 lines)
Line 0 Link Here
0
- 
1
use Modern::Perl;
2
3
return {
4
    bug_number  => "15565",
5
    description => "Add DisplayMultiItemHolds system preference",
6
    up          => sub {
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
10
        $dbh->do(
11
            q{
12
            INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
13
            ('DisplayMultiItemHolds','0','','Display the ability to place holds on different items at the same time in staff interface and OPAC','YesNo')
14
        }
15
        );
16
17
        say $out "Added new system preference 'DisplayMultiItemHolds'";
18
    }
19
};

Return to bug 15565