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

(-)a/installer/data/mysql/sysprefs.sql (-2 / +2 lines)
Lines 455-459 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
455
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
455
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
456
('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'),
456
('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'),
457
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
457
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
458
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo')
458
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo'),
459
;
459
('ZebraExclude','',NULL,'Define some fields to exclude from Zebra indexing','Textarea');
(-)a/installer/data/mysql/updatedatabase.pl (+10 lines)
Lines 8891-8896 if ( CheckVersion($DBversion) ) { Link Here
8891
    SetVersion($DBversion);
8891
    SetVersion($DBversion);
8892
}
8892
}
8893
8893
8894
8895
$DBversion = "3.17.00.XXX";
8896
if ( CheckVersion($DBversion) ) {
8897
    $dbh->do(q{
8898
        INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES('ZebraExclude','', NULL,'Define some fields to exclude from Zebra indexing', 'Textarea')
8899
    });
8900
    print "Upgrade to $DBversion done (Bug 12872 - Adding syspref ZebraExclude)\n";
8901
    SetVersion($DBversion);
8902
}
8903
8894
=head1 FUNCTIONS
8904
=head1 FUNCTIONS
8895
8905
8896
=head2 TableExists($table)
8906
=head2 TableExists($table)
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref (-1 / +7 lines)
Lines 149-151 Administration: Link Here
149
                  university: "university"
149
                  university: "university"
150
            - will be shown on the <a href="http://hea.koha-community.org">Hea Koha community website</a>.
150
            - will be shown on the <a href="http://hea.koha-community.org">Hea Koha community website</a>.
151
            - Note that this value has no effect if the UsageStats system preference is set to "Don't share"
151
            - Note that this value has no effect if the UsageStats system preference is set to "Don't share"
152
- 
152
    Search Engine:
153
        -
154
            - Exclude the following fields from Zebra indexing.
155
            - pref: ZebraExclude
156
              default: ''
157
              type: textarea
158
            - You can include fields, subfields, field groups (see online help). When you change its value, you should probably reindex.

Return to bug 12872