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

(-)a/installer/data/mysql/sysprefs.sql (-1 / +1 lines)
Lines 128-134 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
('GoogleIndicTransliteration','0','','GoogleIndicTransliteration on the OPAC.','YesNo'),
132
('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'),
133
('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'),
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'),
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 (-1 / +1 lines)
Lines 9007-9013 if ( CheckVersion($DBversion) ) { Link Here
9007
9007
9008
$DBversion = "3.17.00.XXX";
9008
$DBversion = "3.17.00.XXX";
9009
if ( CheckVersion($DBversion) ) {
9009
if ( CheckVersion($DBversion) ) {
9010
    $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('GoogleIndicTransliteration','0','','GoogleIndicTransliteration on the OPAC Masthead.','YesNo')");
9010
    $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('GoogleIndicTransliteration','0','','GoogleIndicTransliteration on the OPAC.','YesNo')");
9011
    print "Upgrade to $DBversion done (Bug 13211: Added system preferences GoogleIndicTransliteration on the OPAC Masthead)\n";
9011
    print "Upgrade to $DBversion done (Bug 13211: Added system preferences GoogleIndicTransliteration on the OPAC Masthead)\n";
9012
    SetVersion($DBversion);
9012
    SetVersion($DBversion);
9013
}
9013
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-2 / +1 lines)
Lines 159-165 OPAC: Link Here
159
              choices:
159
              choices:
160
                  yes: Show
160
                  yes: Show
161
                  no: "Don't show"
161
                  no: "Don't show"
162
            - GoogleIndicTransliteration on the OPAC masthead.
162
            - GoogleIndicTransliteration on the OPAC.
163
        -
163
        -
164
            - pref: OpacHighlightedWords
164
            - pref: OpacHighlightedWords
165
              choices:
165
              choices:
166
- 

Return to bug 13211