Browse Source

Bug 8992: DBRev 3.19.00.031

Some fixes too.

Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
3.20.x
Tomás Cohen Arazi 9 years ago
parent
commit
e3450b2de7
  1. 6
      installer/data/mysql/updatedatabase.pl
  2. 2
      kohaversion.pl

6
installer/data/mysql/updatedatabase.pl

@ -10257,10 +10257,10 @@ DELETE FROM language_descriptions
SetVersion($DBversion);
}
$DBversion = "3.19.00.XXX";
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
$DBversion = "3.19.00.031";
if ( CheckVersion($DBversion) ) {
$dbh->do(q{
INSERT INTO systempreferences (variable,value,explanation,options,type)
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type)
VALUES('IdRef','0','Disable/enable the IdRef webservice from the OPAC detail page.',NULL,'YesNo')
});
print "Upgrade to $DBversion done (Bug 8992: Add system preference IdRef))\n";

2
kohaversion.pl

@ -17,7 +17,7 @@ the kohaversion is divided in 4 parts :
use strict;
sub kohaversion {
our $VERSION = '3.19.00.030';
our $VERSION = '3.19.00.031';
# version needs to be set this way
# so that it can be picked up by Makefile.PL
# during install

Loading…
Cancel
Save