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

(-)a/installer/data/mysql/sysprefs.sql (-2 / +2 lines)
Lines 447-451 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
447
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
447
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
448
('yuipath','local','local|http://yui.yahooapis.com/2.5.1/build','Insert the path to YUI libraries, choose local if you use koha offline','Choice'),
448
('yuipath','local','local|http://yui.yahooapis.com/2.5.1/build','Insert the path to YUI libraries, choose local if you use koha offline','Choice'),
449
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
449
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
450
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo')
450
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo'),
451
;
451
('ZebraExclude','',NULL,'Define some fields to exclude from Zebra indexing','Textarea');
(-)a/installer/data/mysql/updatedatabase.pl (+10 lines)
Lines 8820-8825 if ( CheckVersion($DBversion) ) { Link Here
8820
    SetVersion ($DBversion);
8820
    SetVersion ($DBversion);
8821
}
8821
}
8822
8822
8823
8824
$DBversion = "3.17.00.XXX";
8825
if ( CheckVersion($DBversion) ) {
8826
    $dbh->do(q{
8827
        INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES('ZebraExclude','', NULL,'Define some fields to exclude from Zebra indexing', 'Textarea')
8828
    });
8829
    print "Upgrade to $DBversion done (Bug 12872 - Adding syspref ZebraExclude)\n";
8830
    SetVersion($DBversion);
8831
}
8832
8823
=head1 FUNCTIONS
8833
=head1 FUNCTIONS
8824
8834
8825
=head2 TableExists($table)
8835
=head2 TableExists($table)
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref (-1 / +7 lines)
Lines 105-107 Administration: Link Here
105
                  yes: Allow
105
                  yes: Allow
106
                  no: "Don't Allow"
106
                  no: "Don't Allow"
107
            - Mozilla persona for login
107
            - Mozilla persona for login
108
- 
108
    Search Engine:
109
        -
110
            - Exclude the following fields from Zebra indexing.
111
            - pref: ZebraExclude
112
              default: ''
113
              type: textarea
114
            - You can include fields, subfields, field groups (see online help). When you change its value, you should probably reindex.

Return to bug 12872