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 501-506 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
501
('OpacSuppressionRedirect','1','Redirect the opac detail page for suppressed records to an explanatory page (otherwise redirect to 404 error page)','','YesNo'),
501
('OpacSuppressionRedirect','1','Redirect the opac detail page for suppressed records to an explanatory page (otherwise redirect to 404 error page)','','YesNo'),
502
('opacthemes','bootstrap','','Define the current theme for the OPAC interface.','Themes'),
502
('opacthemes','bootstrap','','Define the current theme for the OPAC interface.','Themes'),
503
('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'),
503
('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'),
504
('OpacTrustedCheckout', '0', NULL, 'Allow logged in OPAC users to check out to themselves', 'YesNo'),
504
('OPACURLOpenInNewWindow','0',NULL,'If ON, URLs in the OPAC open in a new window','YesNo'),
505
('OPACURLOpenInNewWindow','0',NULL,'If ON, URLs in the OPAC open in a new window','YesNo'),
505
('OPACUserCSS','',NULL,'Add CSS to be included in the OPAC in an embedded <style> tag.','free'),
506
('OPACUserCSS','',NULL,'Add CSS to be included in the OPAC in an embedded <style> tag.','free'),
506
('OPACUserJS','','70|10','Define custom javascript for inclusion in OPAC','Textarea'),
507
('OPACUserJS','','70|10','Define custom javascript for inclusion in OPAC','Textarea'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-1 / +7 lines)
Lines 673-678 OPAC: Link Here
673
            - pref: NumberOfSuggestionDays
673
            - pref: NumberOfSuggestionDays
674
              class: integer
674
              class: integer
675
            - "days."
675
            - "days."
676
        -
677
            - pref: OpacTrustedCheckout
678
              default: 0
679
              choices:
680
                  0: "Don't allow"
681
                  1: Allow
682
            - "OPAC users to checkout to themselves."
676
    Privacy:
683
    Privacy:
677
        -
684
        -
678
            - pref: AnonSuggestions
685
            - pref: AnonSuggestions
679
- 

Return to bug 30979