From 68bf5353042f87e476db0b8c267254971e4d68d8 Mon Sep 17 00:00:00 2001 From: Andrew Chilton Date: Mon, 19 Jul 2010 15:50:43 +1200 Subject: [PATCH] bug 5007: fixing the syspref for IntranetBiblioDefaultView Content-Type: text/plain; charset="utf-8" --- installer/data/mysql/updatedatabase.pl | 7 +++++++ .../en/modules/admin/preferences/cataloguing.pref | 2 +- kohaversion.pl | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 68e7cbc..6560aed 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -3687,6 +3687,13 @@ if (C4::Context->preference('Version') < TransformToNum($DBversion)){ SetVersion ($DBversion); } +$DBversion = '3.01.00.144'; +if (C4::Context->preference('Version') < TransformToNum($DBversion)){ + $dbh->do(qq{UPDATE systempreferences SET value='normal' where value='default' and variable='IntranetBiblioDefaultView'}); + print "Update the 'default' to 'normal' for the IntranetBiblioDefaultView syspref (bug 5007)"; + SetVersion ($DBversion); +} + =item DropAllForeignKeys($table) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref index b54f65b..4e06abc 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref @@ -98,7 +98,7 @@ Cataloging: - By default, display biblio records in - pref: IntranetBiblioDefaultView choices: - default: normal form. + normal: normal form. marc: MARC form. labeled_marc: Labelled MARC form isbd: ISBD form (see below). diff --git a/kohaversion.pl b/kohaversion.pl index 37605eb..26ee160 100644 --- a/kohaversion.pl +++ b/kohaversion.pl @@ -11,7 +11,7 @@ use strict; sub kohaversion { - our $VERSION = '3.01.00.143'; + our $VERSION = '3.01.00.144'; # version needs to be set this way # so that it can be picked up by Makefile.PL -- 1.6.0.4