View | Details | Raw Unified | Return to bug 5007
Collapse All | Expand All

(-)a/installer/data/mysql/updatedatabase.pl (+7 lines)
Lines 3687-3692 if (C4::Context->preference('Version') < TransformToNum($DBversion)){ Link Here
3687
    SetVersion ($DBversion);
3687
    SetVersion ($DBversion);
3688
}
3688
}
3689
3689
3690
$DBversion = '3.01.00.144';
3691
if (C4::Context->preference('Version') < TransformToNum($DBversion)){
3692
    $dbh->do(qq{UPDATE systempreferences SET value='normal' where value='default' and variable='IntranetBiblioDefaultView'});
3693
    print "Update the 'default' to 'normal' for the IntranetBiblioDefaultView syspref (bug 5007)";
3694
    SetVersion ($DBversion);
3695
}
3696
3690
3697
3691
=item DropAllForeignKeys($table)
3698
=item DropAllForeignKeys($table)
3692
3699
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref (-1 / +1 lines)
Lines 98-104 Cataloging: Link Here
98
            - By default, display biblio records in
98
            - By default, display biblio records in
99
            - pref: IntranetBiblioDefaultView
99
            - pref: IntranetBiblioDefaultView
100
              choices:
100
              choices:
101
                  default: normal form.
101
                  normal: normal form.
102
                  marc: MARC form.
102
                  marc: MARC form.
103
                  labeled_marc: Labelled MARC form
103
                  labeled_marc: Labelled MARC form
104
                  isbd: ISBD form (see below).
104
                  isbd: ISBD form (see below).
(-)a/kohaversion.pl (-2 / +1 lines)
Lines 11-17 use strict; Link Here
11
11
12
sub kohaversion {
12
sub kohaversion {
13
13
14
    our $VERSION = '3.01.00.143';
14
    our $VERSION = '3.01.00.144';
15
15
16
    # version needs to be set this way
16
    # version needs to be set this way
17
    # so that it can be picked up by Makefile.PL
17
    # so that it can be picked up by Makefile.PL
18
- 

Return to bug 5007