Bug 22581: (RM follow-up) Add License to about page.
[koha.git] / installer / data / mysql / atomicupdate / bug-22581.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     # you can use $dbh here like:
4     $dbh->do( qq{
5         INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` )
6         VALUES  ('OPACShowMusicalInscripts','0','','Display musical inscripts on the OPAC record details page when available.','YesNo'),
7                 ('OPACPlayMusicalInscripts','0','','If displayed musical inscripts, play midi conversion on the OPAC record details page.','YesNo')
8     } );
9
10     SetVersion( $DBversion );
11     print "Upgrade to $DBversion done (Bug 22581 - add new OPACShowMusicalInscripts and OPACPlayMusicalInscripts system preferences)\n";
12 }