diff --git a/Koha.pm b/Koha.pm index 1fc4812762..8a5dec6019 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 = "22.12.00.009"; +$VERSION = "22.12.00.010"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_31028.pl b/installer/data/mysql/db_revs/221200010.pl old mode 100644 new mode 100755 similarity index 97% rename from installer/data/mysql/atomicupdate/bug_31028.pl rename to installer/data/mysql/db_revs/221200010.pl index 138f06089c..03d7a85e48 --- a/installer/data/mysql/atomicupdate/bug_31028.pl +++ b/installer/data/mysql/db_revs/221200010.pl @@ -51,7 +51,7 @@ return { ('OpacCatalogConcerns', '0', NULL, 'Allow logged in OPAC users to report catalog concerns', 'YesNo') } ); - say $out "`OpacCatalogConcerns` preference added"; + say $out "Added new system preference 'OpacCatalogConcerns'"; if ( ( $dbh->selectrow_array('SELECT COUNT(*) FROM additional_contents WHERE location=?', undef, 'CatalogConcernHelp') )[0] == 0 ) { # Check to make idempotent $dbh->do( @@ -116,7 +116,7 @@ return { ('CatalogerEmails', '', '', 'Notify these catalogers by email when a catalog concern is submitted', 'free') } ); - say $out "`CatalogerEmails` preference added"; + say $out "Added new system preference 'CatalogerEmails'"; $dbh->do( q{ @@ -132,6 +132,6 @@ return { ('CatalogConcerns', '0', NULL, 'Allow users to report catalog concerns', 'YesNo') } ); - say $out "`CatalogConcerns` preference added"; + say $out "Added new system preference 'CatalogConcerns'"; } }