From 5af0142725ea7d6b53963faf72815b2b4a0f4be7 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Fri, 2 Feb 2018 09:18:16 +0100 Subject: [PATCH] Bug 17682: DBRev 17.05.08.002 Signed-off-by: Fridolin Somers --- 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 edf36c4332..d88b6e508b 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.05.08.001"; +$VERSION = "17.05.08.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 502ef1411e..9ccb550521 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -14655,6 +14655,15 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 18915 - Correct CHECKOUT_NOTE notice template)\n"; } +$DBversion = '17.05.08.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