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

(-)a/circ/reserveratios.pl (-1 / +1 lines)
Lines 69-75 $enddate = $todaysdate unless $enddate; Link Here
69
$startdate = $todaysdate->clone->subtract( years => 1 ) unless $startdate;
69
$startdate = $todaysdate->clone->subtract( years => 1 ) unless $startdate;
70
70
71
if (!defined($ratio)) {
71
if (!defined($ratio)) {
72
    $ratio = 3;
72
    $ratio = C4::Context->preference('HoldRatioDefault');
73
}
73
}
74
# Force to be a number
74
# Force to be a number
75
$ratio += 0;
75
$ratio += 0;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +5 lines)
Lines 689-694 Circulation: Link Here
689
                  0: "Don't store"
689
                  0: "Don't store"
690
            - 'the last patron to return an item. This setting is independent of the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=opacreadinghistory">opacreadinghistory</a> and <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=AnonymousPatron">AnonymousPatron</a> system preferences.'
690
            - 'the last patron to return an item. This setting is independent of the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=opacreadinghistory">opacreadinghistory</a> and <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=AnonymousPatron">AnonymousPatron</a> system preferences.'
691
    Holds policy:
691
    Holds policy:
692
        -
693
            - Default the holds ratio report to
694
            - pref: HoldRatioDefault
695
              class: integer
696
            - "."
692
        -
697
        -
693
            - In the staff interface, split the holds queue into separate tables by
698
            - In the staff interface, split the holds queue into separate tables by
694
            - pref: HoldsSplitQueue
699
            - pref: HoldsSplitQueue
695
- 

Return to bug 23208