Merge remote-tracking branch 'origin/new/bug_5347'
[koha.git] / installer / data / mysql / atomicupdate / bug_7284_authority_linking_pt2
1 #! /usr/bin/perl
2 use strict;
3 use warnings;
4 use C4::Context;
5 my $dbh = C4::Context->dbh;
6 $dbh->do(
7 "INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('CatalogModuleRelink',0,'If OFF the linker will never replace the authids that are set in the cataloging module.',NULL,'YesNo');"
8 );
9 print "Upgrade done (Configured bug 7284, added the )\n";