From dcae2ad7b411d9040a76413db68922253a6aa400 Mon Sep 17 00:00:00 2001 From: Brendan Gallagher Date: Wed, 24 Feb 2016 04:09:36 +0000 Subject: [PATCH] DBRev Bug 15343 - Allow patrons to choose their own password on self registration Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com --- Koha.pm | 2 +- ...onSelfRegistrationBorrowrUnwantedField_by_default.sql | 1 - installer/data/mysql/updatedatabase.pl | 9 +++++++++ 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_15343-add_password_to_PatronSelfRegistrationBorrowrUnwantedField_by_default.sql diff --git a/Koha.pm b/Koha.pm index cc349d2635..c4c518b8eb 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 = "3.23.00.025"; +$VERSION = "3.23.00.026"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_15343-add_password_to_PatronSelfRegistrationBorrowrUnwantedField_by_default.sql b/installer/data/mysql/atomicupdate/bug_15343-add_password_to_PatronSelfRegistrationBorrowrUnwantedField_by_default.sql deleted file mode 100644 index 0f3ad0f912..0000000000 --- a/installer/data/mysql/atomicupdate/bug_15343-add_password_to_PatronSelfRegistrationBorrowrUnwantedField_by_default.sql +++ /dev/null @@ -1 +0,0 @@ -UPDATE systempreferences SET value = CONCAT_WS('|', IF(value='', NULL, value), "password") WHERE variable="PatronSelfRegistrationBorrowerUnwantedField" AND value NOT LIKE "%password%"; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 0610e66300..8457913cb1 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -11817,6 +11817,15 @@ if ( CheckVersion($DBversion) ) { print "Upgrade to $DBversion done (Bug 15526 - Drop nozebra database table)\n"; SetVersion($DBversion); +$DBversion = "3.23.00.026"; +if ( CheckVersion($DBversion) ) { + $dbh->do(q{ + UPDATE systempreferences SET value = CONCAT_WS('|', IF(value='', NULL, value), "password") WHERE variable="PatronSelfRegistrationBorrowerUnwantedField" AND value NOT LIKE "%password%"; +}); + + print "Upgrade to $DBversion done (Bug 15343 - Allow patrons to choose their own password on self registration)\n"; + SetVersion($DBversion); + # DEVELOPER PROCESS, search for anything to execute in the db_update directory # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.2