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

(-)a/installer/data/mysql/sysprefs.sql (-2 / +2 lines)
Lines 446-450 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
446
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
446
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
447
('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'),
447
('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
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
448
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
449
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo')
449
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo'),
450
;
450
('ZebraExclude','',NULL,'Define some fields to exclude from Zebra indexing','Textarea');
(-)a/installer/data/mysql/updatedatabase.pl (+10 lines)
Lines 8751-8756 if ( CheckVersion($DBversion) ) { Link Here
8751
    SetVersion($DBversion);
8751
    SetVersion($DBversion);
8752
}
8752
}
8753
8753
8754
8755
$DBversion = "3.17.00.XXX";
8756
if ( CheckVersion($DBversion) ) {
8757
    $dbh->do(q{
8758
        INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES('ZebraExclude','', NULL,'Define some fields to exclude from Zebra indexing', 'Textarea')
8759
    });
8760
    print "Upgrade to $DBversion done (Bug 12872 - Adding syspref ZebraExclude)\n";
8761
    SetVersion($DBversion);
8762
}
8763
8754
=head1 FUNCTIONS
8764
=head1 FUNCTIONS
8755
8765
8756
=head2 TableExists($table)
8766
=head2 TableExists($table)
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref (-1 / +6 lines)
Lines 113-115 Administration: Link Here
113
                Solr: Solr
113
                Solr: Solr
114
                Zebra: Zebra
114
                Zebra: Zebra
115
            - is the search engine used.
115
            - is the search engine used.
116
- 
116
        -
117
            - Exclude the following fields from Zebra indexing.
118
            - pref: ZebraExclude
119
              default: ''
120
              type: textarea
121
            - You can include fields, subfields, field groups (see online help). When you change its value, you should probably reindex.

Return to bug 12872