Bug 16371: (follow-up) DB changes

We need to keep "opac" is the pref was set before the upgrade

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
Jonathan Druart 2020-08-13 10:28:24 +02:00
parent c3b43d3156
commit 6d7ff0d504

View file

@ -22576,15 +22576,17 @@ if( CheckVersion( $DBversion ) ) {
$DBversion = '20.06.00.023';
if( CheckVersion( $DBversion ) ) {
my $QuoteOfTheDay = C4::Context->preference('QuoteOfTheDay');
$dbh->do( q|
UPDATE systempreferences
SET value = '',
options = 'intranet,opac',
SET options = 'intranet,opac',
explanation = 'Enable or disable display of Quote of the Day on the OPAC and staff interface home page',
type = 'multiple'
WHERE variable = 'QuoteOfTheDay'
| );
C4::Context->set_preference('QuoteOfTheDay', $QuoteOfTheDay ? 'opac' : '');
NewVersion( $DBversion, 16371, "Quote of the Day (QOTD) for the staff interface " );
}