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

(-)a/C4/Circulation.pm (-1 / +1 lines)
Lines 3750-3756 sub GetAgeRestriction { Link Here
3750
    return $restriction_year;
3750
    return $restriction_year;
3751
}
3751
}
3752
3752
3753
=head AnonymizeItemIssueHistory
3753
=head2 AnonymizeItemIssueHistory
3754
3754
3755
    AnonymizeItemIssueHistory({ itemnumber => $itemnumber });
3755
    AnonymizeItemIssueHistory({ itemnumber => $itemnumber });
3756
3756
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +1 lines)
Lines 8570-8576 if ( CheckVersion($DBversion) ) { Link Here
8570
    SetVersion($DBversion);
8570
    SetVersion($DBversion);
8571
}
8571
}
8572
8572
8573
$DBversion = "3.13.00.XXX";
8573
$DBversion = "3.17.00.XXX";
8574
if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
8574
if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
8575
   $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES ('StoreLastBorrower','0','','If ON, the last borrower to return an item will be stored in items.last_returned_by','YesNo')");
8575
   $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES ('StoreLastBorrower','0','','If ON, the last borrower to return an item will be stored in items.last_returned_by','YesNo')");
8576
8576
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-privacy.tt (-1 / +6 lines)
Lines 43-48 Link Here
43
                                <li class="privacy2">Never: Delete my reading history immediately. This will delete all record of the item that was checked-out upon check-in.</li>
43
                                <li class="privacy2">Never: Delete my reading history immediately. This will delete all record of the item that was checked-out upon check-in.</li>
44
                            </ul>
44
                            </ul>
45
                            <p id="note1">Please note that information on any book still checked-out must be kept by the library no matter which privacy option you choose.</p>
45
                            <p id="note1">Please note that information on any book still checked-out must be kept by the library no matter which privacy option you choose.</p>
46
                            [% IF Koha.Preference('StoreLastBorrower') %]
47
                                <p id="note-StoreLastBorrower">
48
                                    The library will also track the last patron to have checked out an item.
49
                                    If you check out and return an item, the librarian will retain a record of that checkout until another patron checks out and returns that item.
50
                                </p>
51
                            [% END %]
46
                            <p id="note2">Please also note that the library staff can't update these values for you: it's your privacy!</p>
52
                            <p id="note2">Please also note that the library staff can't update these values for you: it's your privacy!</p>
47
                            <form action="/cgi-bin/koha/opac-privacy.pl" method="post" id="opac-privacy-update-form">
53
                            <form action="/cgi-bin/koha/opac-privacy.pl" method="post" id="opac-privacy-update-form">
48
                                <input type="hidden" name="op" value="update_privacy" />
54
                                <input type="hidden" name="op" value="update_privacy" />
49
- 

Return to bug 9011