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

(-)a/installer/data/mysql/atomicupdate/bug_30979.pl (+16 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number  => "30979",
5
    description => "Add OPACTrustedCheckout system preference",
6
    up          => sub {
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
        $dbh->do(
10
            q{
11
                INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
12
	            ('OpacTrustedCheckout', '0', NULL, 'Allow logged in OPAC users to check out to themselves', 'YesNo')
13
	        }
14
        );
15
    },
16
};
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 505-510 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
505
('OpacSuppressionRedirect','1','Redirect the opac detail page for suppressed records to an explanatory page (otherwise redirect to 404 error page)','','YesNo'),
505
('OpacSuppressionRedirect','1','Redirect the opac detail page for suppressed records to an explanatory page (otherwise redirect to 404 error page)','','YesNo'),
506
('opacthemes','bootstrap','','Define the current theme for the OPAC interface.','Themes'),
506
('opacthemes','bootstrap','','Define the current theme for the OPAC interface.','Themes'),
507
('OpacTopissue','0',NULL,'If ON, enables the \'most popular items\' link on OPAC. Warning, this is an EXPERIMENTAL feature, turning ON may overload your server','YesNo'),
507
('OpacTopissue','0',NULL,'If ON, enables the \'most popular items\' link on OPAC. Warning, this is an EXPERIMENTAL feature, turning ON may overload your server','YesNo'),
508
('OpacTrustedCheckout', '0', NULL, 'Allow logged in OPAC users to check out to themselves', 'YesNo'),
508
('OPACURLOpenInNewWindow','0',NULL,'If ON, URLs in the OPAC open in a new window','YesNo'),
509
('OPACURLOpenInNewWindow','0',NULL,'If ON, URLs in the OPAC open in a new window','YesNo'),
509
('OPACUserCSS','',NULL,'Add CSS to be included in the OPAC in an embedded <style> tag.','free'),
510
('OPACUserCSS','',NULL,'Add CSS to be included in the OPAC in an embedded <style> tag.','free'),
510
('OPACUserJS','','70|10','Define custom javascript for inclusion in OPAC','Textarea'),
511
('OPACUserJS','','70|10','Define custom javascript for inclusion in OPAC','Textarea'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-2 / +7 lines)
Lines 621-627 OPAC: Link Here
621
                1: "Block"
621
                1: "Block"
622
                0: "Don't block"
622
                0: "Don't block"
623
            - expired patrons from OPAC actions such as placing a hold or renewing. Note that the setting for a patron category takes priority over this system preference.
623
            - expired patrons from OPAC actions such as placing a hold or renewing. Note that the setting for a patron category takes priority over this system preference.
624
624
        -
625
            - pref: OpacTrustedCheckout
626
              default: 0
627
              choices:
628
                  0: "Don't allow"
629
                  1: Allow
630
            - "OPAC users to checkout to themselves."
625
    Privacy:
631
    Privacy:
626
        -
632
        -
627
            - pref: opacreadinghistory
633
            - pref: opacreadinghistory
628
- 

Return to bug 30979