From 84ab40c64680641cc0fe3bc0b277909b85ff278a Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Tue, 23 Jan 2018 02:24:28 +0000 Subject: [PATCH] Bug 17682: DBRev 17.11.01.002 Signed-off-by: Nick Clemens --- Koha.pm | 2 +- .../atomicupdate/bug17682_urlchangeforgooglescholar.sql | 1 - installer/data/mysql/updatedatabase.pl | 9 +++++++++ 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug17682_urlchangeforgooglescholar.sql diff --git a/Koha.pm b/Koha.pm index d0befdd791..b131278ad6 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 = "17.11.01.001"; +$VERSION = "17.11.01.002"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug17682_urlchangeforgooglescholar.sql b/installer/data/mysql/atomicupdate/bug17682_urlchangeforgooglescholar.sql deleted file mode 100644 index 18e9603ebe..0000000000 --- a/installer/data/mysql/atomicupdate/bug17682_urlchangeforgooglescholar.sql +++ /dev/null @@ -1 +0,0 @@ -UPDATE systempreferences set value = replace(value, "http://www.scholar", "https://scholar") where variable = 'OPACSearchForTitleIn'; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 9a8cd46abc..497a9fcb92 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -15092,6 +15092,15 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 18915 - Correct CHECKOUT_NOTE notice template)\n"; } +$DBversion = '17.11.01.002'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + UPDATE systempreferences SET value=replace(value, "http://www.scholar", "https://scholar") WHERE variable='OPACSearchForTitleIn'; + }); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 17682 - Update URL for Google Scholar in OPACSearchForTitleIn)\n"; +} + # 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.5