Bug 21891: (follow-up) Update database to set blank values to "default"
[koha.git] / installer / data / mysql / atomicupdate / bug_21891-remove-non-xslt-detail.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do( "UPDATE systempreferences SET value = 'default' WHERE variable = 'XSLTDetailsDisplay' AND value = ''" );
4     SetVersion( $DBversion );
5     print "Upgrade to $DBversion done (Bug 29891 - Remove non-XSLT detail view in the staff client)\n";
6 }