[Koha-patches] [PATCH] bug 5007: fixing the syspref for IntranetBiblioDefaultView

Chris Cormack chrisc at catalyst.net.nz
Mon Jul 19 06:24:06 CEST 2010


From: Andrew Chilton <andychilton at gmail.com>

Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
---
 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.7.0.4



More information about the Koha-patches mailing list