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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 369-371 INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES(' Link Here
369
INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('SuspendHoldsIntranet', '1', NULL , 'Allow holds to be suspended from the intranet.', 'YesNo');
369
INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('SuspendHoldsIntranet', '1', NULL , 'Allow holds to be suspended from the intranet.', 'YesNo');
370
INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('SuspendHoldsOpac', '1', NULL , 'Allow holds to be suspended from the OPAC.', 'YesNo');
370
INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('SuspendHoldsOpac', '1', NULL , 'Allow holds to be suspended from the OPAC.', 'YesNo');
371
INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('DefaultLanguageField008','','Fill in the default language for field 008 Range 35-37 (e.g. eng, nor, ger, see <a href="http://www.loc.gov/marc/languages/language_code.html">MARC Code List for Languages</a>)','','Free');
371
INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('DefaultLanguageField008','','Fill in the default language for field 008 Range 35-37 (e.g. eng, nor, ger, see <a href="http://www.loc.gov/marc/languages/language_code.html">MARC Code List for Languages</a>)','','Free');
372
INSERT INTO systempreferences (variable,value,explanation,options,type)VALUES('OPACISBD','1','Allow display of ISBD view of bibiographic records in OPAC','','YesNo');
(-)a/installer/data/mysql/updatedatabase.pl (+7 lines)
Lines 5369-5374 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { Link Here
5369
    SetVersion($DBversion);
5369
    SetVersion($DBversion);
5370
}
5370
}
5371
5371
5372
$DBversion = "3.09.00.XXX";
5373
if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
5374
    $dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('OPACISBD','1','Allow display of ISBD view of bibiographic records in OPAC','','YesNo')");
5375
    print "Upgrade to $DBversion done (Add OPACISBD syspref)\n";
5376
    SetVersion ($DBversion);
5377
}
5378
5372
5379
5373
=head1 FUNCTIONS
5380
=head1 FUNCTIONS
5374
5381
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-1 / +6 lines)
Lines 339-344 OPAC: Link Here
339
                  yes: Enable
339
                  yes: Enable
340
                  no: Disable
340
                  no: Disable
341
            - Quote of the Day display on OPAC home page
341
            - Quote of the Day display on OPAC home page
342
        -
343
            - pref: OPACISBD
344
              choices:
345
                  yes: Allow
346
                  no: "Don't allow"
347
            - patrons to view records in ISBD form on the OPAC.
342
    Policy:
348
    Policy:
343
        -
349
        -
344
            - pref: singleBranchMode
350
            - pref: singleBranchMode
345
- 

Return to bug 5979