@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_30226.pl | 3 --- 1 file changed, 3 deletions(-) --- a/installer/data/mysql/atomicupdate/bug_30226.pl +++ a/installer/data/mysql/atomicupdate/bug_30226.pl @@ -6,11 +6,8 @@ return { up => sub { my ($args) = @_; my ($dbh, $out) = @$args{qw(dbh out)}; - # Add system preference AllowSetAutomaticRenewal $dbh->do(q{ INSERT IGNORE INTO systempreferences (`variable`, `value`, `options`, `explanation`, `type` ) VALUES('AllowSetAutomaticRenewal', '1', NULL, 'If ON, allows staff to flag items for automatic renewal on the check out page', 'YesNo') }); - # Finished adding system preference AllowSetAutomaticRenewal - say $out "Added system preference AllowSetAutomaticRenewal"; }, }; --