Bug 6151 follow-up DBREv & removing useless `
This commit is contained in:
parent
850b4eeab9
commit
c50a86e55f
2 changed files with 2 additions and 2 deletions
|
@ -5801,7 +5801,7 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
|
|||
# to preserve default behaviour as best as possible, set this new preference differently depending on whether IndependantBranches is set or not
|
||||
my $prefvalue = 'anywhere';
|
||||
if (C4::Context->preference("IndependantBranches")) { $prefvalue = 'homeorholdingbranch';}
|
||||
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('AllowReturnToBranch', '$prefvalue', 'Where an item may be returned', 'anywhere|homebranch|holdingbranch|homeorholdingbranch', 'Choice');");
|
||||
$dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('AllowReturnToBranch', '$prefvalue', 'Where an item may be returned', 'anywhere|homebranch|holdingbranch|homeorholdingbranch', 'Choice');");
|
||||
|
||||
print "Upgrade to $DBversion done: adding AllowReturnToBranch syspref (bug 6151)";
|
||||
SetVersion($DBversion);
|
||||
|
|
|
@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
|
|||
use strict;
|
||||
|
||||
sub kohaversion {
|
||||
our $VERSION = '3.09.00.046';
|
||||
our $VERSION = '3.09.00.047';
|
||||
# version needs to be set this way
|
||||
# so that it can be picked up by Makefile.PL
|
||||
# during install
|
||||
|
|
Loading…
Reference in a new issue