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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 128-133 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
128
('finesMode','test','off|test|production','Choose the fines mode, \'off\', \'test\' (emails admin report) or \'production\' (accrue overdue fines).  Requires accruefines cronjob.','Choice'),
128
('finesMode','test','off|test|production','Choose the fines mode, \'off\', \'test\' (emails admin report) or \'production\' (accrue overdue fines).  Requires accruefines cronjob.','Choice'),
129
('FRBRizeEditions','0','','If ON, Koha will query one or more ISBN web services for associated ISBNs and display an Editions tab on the details pages','YesNo'),
129
('FRBRizeEditions','0','','If ON, Koha will query one or more ISBN web services for associated ISBNs and display an Editions tab on the details pages','YesNo'),
130
('gist','0','','Default Goods and Services tax rate NOT in %, but in numeric form (0.12 for 12%), set to 0 to disable GST','Integer'),
130
('gist','0','','Default Goods and Services tax rate NOT in %, but in numeric form (0.12 for 12%), set to 0 to disable GST','Integer'),
131
('GoogleIndicTransliteration','0','','GoogleIndicTransliteration on the OPAC Masthead.','YesNo'),
131
('GoogleJackets','0',NULL,'if ON, displays jacket covers from Google Books API','YesNo'),
132
('GoogleJackets','0',NULL,'if ON, displays jacket covers from Google Books API','YesNo'),
132
('hidelostitems','0','','If ON, disables display of\"lost\" items in OPAC.','YesNo'),
133
('hidelostitems','0','','If ON, disables display of\"lost\" items in OPAC.','YesNo'),
133
('HidePatronName','0','','If this is switched on, patron\'s cardnumber will be shown instead of their name on the holds and catalog screens','YesNo'),
134
('HidePatronName','0','','If this is switched on, patron\'s cardnumber will be shown instead of their name on the holds and catalog screens','YesNo'),
(-)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