From cd71f5ba7228858926edf220f74eff9b4e1bd114 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Tue, 17 Nov 2020 17:32:14 +1300 Subject: [PATCH] Bug 26569: DBRev 19.05.16.001 Signed-off-by: Aleisha Amohia (cherry picked from commit 70348d8d4da5d777a08cb3ad6908ad0719c4b544) Signed-off-by: Victor Grousset/tuxayo --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_26569.perl | 12 ------------ installer/data/mysql/updatedatabase.pl | 12 ++++++++++++ 3 files changed, 13 insertions(+), 13 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_26569.perl diff --git a/Koha.pm b/Koha.pm index d5207d5d78..9811a9c88c 100644 --- a/Koha.pm +++ b/Koha.pm @@ -29,7 +29,7 @@ use vars qw{ $VERSION }; # - #4 : the developer version. The 4th number is the database subversion. # used by developers when the database changes. updatedatabase take care of the changes itself # and is automatically called by Auth.pm when needed. -$VERSION = "19.05.16.000"; +$VERSION = "19.05.16.001"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_26569.perl b/installer/data/mysql/atomicupdate/bug_26569.perl deleted file mode 100644 index 14441c3225..0000000000 --- a/installer/data/mysql/atomicupdate/bug_26569.perl +++ /dev/null @@ -1,12 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do( "UPDATE systempreferences SET explanation='Define which baskets a user is allowed to view: their own only, any within their branch, or all' WHERE variable='AcqViewBaskets'" ); - $dbh->do( "UPDATE systempreferences SET explanation='If enabled, the patron can set checkouts to be visible to their guarantor' WHERE variable='AllowPatronToSetCheckoutsVisibilityForGuarantor'" ); - $dbh->do( "UPDATE systempreferences SET explanation='If enabled, the patron can set fines to be visible to their guarantor' WHERE variable='AllowPatronToSetFinesVisibilityForGuarantor'" ); - $dbh->do( "UPDATE systempreferences SET explanation='If on, and a patron is logged into the OPAC, items from their home library will be emphasized and shown first in search results and item details.' WHERE variable='HighlightOwnItemsOnOPAC'" ); - $dbh->do( "UPDATE systempreferences SET explanation='If ON, the next user will automatically get the last searches in their history' WHERE variable='LoadSearchHistoryToTheFirstLoggedUser'" ); - $dbh->do( "UPDATE systempreferences SET explanation='If enabled, any patron attempting to register themselves via the OPAC will be required to verify themselves via email to activate their account.' WHERE variable='PatronSelfRegistrationVerifyByEmail'" ); - - print "Upgrade to $DBversion done (Bug 26569 - Use gender neutral pronouns in system preference explanations)\n"; - SetVersion( $DBversion ); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 4dfb302c14..163c55c89f 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -19165,6 +19165,18 @@ if ( CheckVersion($DBversion) ) { SetVersion ($DBversion); } +$DBversion = '19.05.16.001'; +if( CheckVersion( $DBversion ) ) { + $dbh->do( "UPDATE systempreferences SET explanation='Define which baskets a user is allowed to view: their own only, any within their branch, or all' WHERE variable='AcqViewBaskets'" ); + $dbh->do( "UPDATE systempreferences SET explanation='If enabled, the patron can set checkouts to be visible to their guarantor' WHERE variable='AllowPatronToSetCheckoutsVisibilityForGuarantor'" ); + $dbh->do( "UPDATE systempreferences SET explanation='If on, and a patron is logged into the OPAC, items from their home library will be emphasized and shown first in search results and item details.' WHERE variable='HighlightOwnItemsOnOPAC'" ); + $dbh->do( "UPDATE systempreferences SET explanation='If ON, the next user will automatically get the last searches in their history' WHERE variable='LoadSearchHistoryToTheFirstLoggedUser'" ); + $dbh->do( "UPDATE systempreferences SET explanation='If enabled, any patron attempting to register themselves via the OPAC will be required to verify themselves via email to activate their account.' WHERE variable='PatronSelfRegistrationVerifyByEmail'" ); + + print "Upgrade to $DBversion done (Bug 26569 - Use gender neutral pronouns in system preference explanations)\n"; + SetVersion( $DBversion ); +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5