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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 105-110 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
105
('defaultSortOrder','dsc','asc|dsc|az|za','Specify the default sort order','Choice'),
105
('defaultSortOrder','dsc','asc|dsc|az|za','Specify the default sort order','Choice'),
106
('DefaultToLoggedInLibraryCircRules',  '0', NULL ,  'If enabled, circ rules editor will default to the logged in library''s rules, rather than the ''all libraries'' rules.',  'YesNo'),
106
('DefaultToLoggedInLibraryCircRules',  '0', NULL ,  'If enabled, circ rules editor will default to the logged in library''s rules, rather than the ''all libraries'' rules.',  'YesNo'),
107
('DefaultToLoggedInLibraryNoticesSlips',  '0', NULL ,  'If enabled,slips and notices editor will default to the logged in library''s rules, rather than the ''all libraries'' rules.',  'YesNo'),
107
('DefaultToLoggedInLibraryNoticesSlips',  '0', NULL ,  'If enabled,slips and notices editor will default to the logged in library''s rules, rather than the ''all libraries'' rules.',  'YesNo'),
108
('DefaultToLoggedInLibraryOverdueTriggers',  '0', NULL ,  'If enabled, overdue status triggers editor will default to the logged in library''s rules, rather than the ''default'' rules.',  'YesNo'),
108
('delimiter',';',';|tabulation|,|/|\\|#||','Define the default separator character for exporting reports','Choice'),
109
('delimiter',';',';|tabulation|,|/|\\|#||','Define the default separator character for exporting reports','Choice'),
109
('Display856uAsImage','OFF','OFF|Details|Results|Both','Display the URI in the 856u field as an image, the corresponding Staff Client XSLT option must be on','Choice'),
110
('Display856uAsImage','OFF','OFF|Details|Results|Both','Display the URI in the 856u field as an image, the corresponding Staff Client XSLT option must be on','Choice'),
110
('DisplayClearScreenButton','0','','If set to ON, a clear screen button will appear on the circulation page.','YesNo'),
111
('DisplayClearScreenButton','0','','If set to ON, a clear screen button will appear on the circulation page.','YesNo'),
(-)a/installer/data/mysql/updatedatabase.pl (+11 lines)
Lines 10157-10162 if(CheckVersion($DBversion)) { Link Here
10157
    SetVersion($DBversion);
10157
    SetVersion($DBversion);
10158
}
10158
}
10159
10159
10160
$DBversion = "3.19.00.XXX";
10161
if(CheckVersion($DBversion)) {
10162
    $dbh->do(q{
10163
        INSERT INTO systempreferences ( variable, value, options, explanation, type )
10164
        VALUES ('DefaultToLoggedInLibraryOverdueTriggers',  '0', NULL,  'If enabled, overdue status triggers editor will default to the logged in library''s rules, rather than the ''default'' rules.',  'YesNo')
10165
    });
10166
10167
    print "Upgrade to $DBversion done (Bug 13379 - Modify authorised_values.category to varchar(32))\n";
10168
    SetVersion($DBversion);
10169
}
10170
10160
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
10171
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
10161
# SEE bug 13068
10172
# SEE bug 13068
10162
# if there is anything in the atomicupdate, read and execute it.
10173
# if there is anything in the atomicupdate, read and execute it.
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref (-1 / +7 lines)
Lines 64-69 Administration: Link Here
64
                  yes: "logged in library's"
64
                  yes: "logged in library's"
65
                  no: "all libraries"
65
                  no: "all libraries"
66
            - notices and slips by default.
66
            - notices and slips by default.
67
        -
68
            - When editing overdue notice/status triggers show the 
69
            - pref: DefaultToLoggedInLibraryOverdueTriggers
70
              choices:
71
                  yes: "logged in library's"
72
                  no: "all libraries"
73
            - rules by default.
67
    Login options:
74
    Login options:
68
        -
75
        -
69
            - Automatically log out users after
76
            - Automatically log out users after
70
- 

Return to bug 11747