@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_15461.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/installer/data/mysql/atomicupdate/bug_15461.pl +++ a/installer/data/mysql/atomicupdate/bug_15461.pl @@ -8,10 +8,12 @@ return { my ( $dbh, $out ) = @$args{qw(dbh out)}; # Do you stuffs here - $dbh->do(q{ + $dbh->do( + q{ INSERT IGNORE INTO systempreferences (`variable`,`value`,`options`,`explanation`,`type`) 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') - }); + } + ); say $out "Added new system preference 'StaffLocationOnDetail'"; }, --