Skip to content

Commit

Permalink
Bug 15494: DBRev 18.06.00.053
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Clemens <[email protected]>
  • Loading branch information
kidclamp committed Nov 7, 2018
1 parent 5594afb commit dc43a4b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 17 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 = "18.06.00.052";
$VERSION = "18.06.00.053";

sub version {
return $VERSION;
Expand Down
16 changes: 0 additions & 16 deletions installer/data/mysql/atomicupdate/bug_15494.perl

This file was deleted.

7 changes: 7 additions & 0 deletions installer/data/mysql/updatedatabase.pl
Original file line number Diff line number Diff line change
Expand Up @@ -16909,6 +16909,13 @@ sub stocknumber_checker { #code reused later on
print "Upgrade to $DBversion done (Bug 14391: Add granular permissions to the administration module)\n";
}

$DBversion = '18.06.00.053';
if( CheckVersion( $DBversion ) ) {
$dbh->do( "INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('ItemsDeniedRenewal','','','This syspref allows to define custom rules for denying renewal of specific items.','Textarea')" );
SetVersion( $DBversion );
print "Upgrade to $DBversion done (Bug 15494 - Block renewals by arbitrary item values)\n";
}

# SEE bug 13068
# if there is anything in the atomicupdate, read and execute it.

Expand Down

0 comments on commit dc43a4b

Please sign in to comment.