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

(-)a/installer/data/mysql/atomicupdate/bug_15461.pl (-3 / +4 lines)
Lines 8-17 return { Link Here
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
9
10
        # Do you stuffs here
10
        # Do you stuffs here
11
        $dbh->do(q{
11
        $dbh->do(
12
            q{
12
            INSERT IGNORE INTO systempreferences (`variable`,`value`,`options`,`explanation`,`type`)
13
            INSERT IGNORE INTO systempreferences (`variable`,`value`,`options`,`explanation`,`type`)
13
            VALUES ('StaffLocationOnDetail','home','holding|home|both|column','In the staff interface, display the shelving location on its own column or under a library columns.','Choice')
14
            VALUES ('StaffLocationOnDetail','home','holding|home|both|column','In the staff interface, display the shelving location on its own column or under a library columns.','Choice')
14
        });
15
        }
16
        );
15
17
16
        say $out "Added new system preference 'StaffLocationOnDetail'";
18
        say $out "Added new system preference 'StaffLocationOnDetail'";
17
    },
19
    },
18
- 

Return to bug 15461