Skip to content

Commit

Permalink
Bug 14472: DBRev 3.21.00.026
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Cohen Arazi <[email protected]>
  • Loading branch information
tomascohen committed Sep 7, 2015
1 parent d0618a9 commit 8dfde8b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Koha.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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.21.00.025";
$VERSION = "3.21.00.026";

sub version {
return $VERSION;
Expand Down

This file was deleted.

11 changes: 11 additions & 0 deletions installer/data/mysql/updatedatabase.pl
Original file line number Diff line number Diff line change
Expand Up @@ -10857,6 +10857,17 @@ sub stocknumber_checker { #code reused later on
SetVersion($DBversion);
}

$DBversion = "3.21.00.026";
if ( CheckVersion($DBversion) ) {
$dbh->do(q{
UPDATE matchpoints
SET search_index='issn'
WHERE matcher_id=(SELECT matcher_id FROM marc_matchers WHERE code = 'ISSN')
});
print "Upgrade to $DBversion done (Bug 14472: Wrong ISSN search index in record matching rules)\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.
Expand Down

0 comments on commit 8dfde8b

Please sign in to comment.