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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 458-461 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
458
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
458
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
459
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
459
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
460
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo')
460
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo')
461
('GoogleIndicTransliteration','0','','GoogleIndicTransliteration on the OPAC Masthead.','YesNo')
461
;
462
;
(-)a/installer/data/mysql/updatedatabase.pl (+7 lines)
Lines 9005-9010 if ( CheckVersion($DBversion) ) { Link Here
9005
    SetVersion($DBversion);
9005
    SetVersion($DBversion);
9006
}
9006
}
9007
9007
9008
$DBversion = "3.17.00.XXX";
9009
if ( CheckVersion($DBversion) ) {
9010
    $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('GoogleIndicTransliteration','0','','GoogleIndicTransliteration on the OPAC Masthead.','YesNo')");
9011
    print "Upgrade to $DBversion done (Bug 13211: Added system preferences GoogleIndicTransliteration on the OPAC Masthead)\n";
9012
    SetVersion($DBversion);
9013
}
9014
   
9008
=head1 FUNCTIONS
9015
=head1 FUNCTIONS
9009
9016
9010
=head2 TableExists($table)
9017
=head2 TableExists($table)
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-1 / +7 lines)
Lines 154-159 OPAC: Link Here
154
                  no: "Don't show"
154
                  no: "Don't show"
155
            - the item's barcode on the holdings tab.
155
            - the item's barcode on the holdings tab.
156
        -
156
        -
157
            - pref: GoogleIndicTransliteration
158
              default: 0
159
              choices:
160
                  yes: Show
161
                  no: "Don't show"
162
            - GoogleIndicTransliteration on the OPAC masthead.
163
        -
157
            - pref: OpacHighlightedWords
164
            - pref: OpacHighlightedWords
158
              choices:
165
              choices:
159
                  yes: Highlight
166
                  yes: Highlight
160
- 

Return to bug 13211