X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=opac%2Fopac-privacy.pl;h=22fe694e58596d07f6f19fb276cc908191c07a26;hb=08382876306cfda839637c5f72a107b304458a8e;hp=ca505605ae8262de7e063f480fd0118ac8b9b129;hpb=f098258e8cf2d616c6bbc35e44c6a1df47be8517;p=koha.git diff --git a/opac/opac-privacy.pl b/opac/opac-privacy.pl index ca505605ae..22fe694e58 100755 --- a/opac/opac-privacy.pl +++ b/opac/opac-privacy.pl @@ -12,9 +12,9 @@ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with -# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. use strict; use CGI; @@ -51,9 +51,14 @@ if ($op eq "update_privacy") if ($op eq "delete_record") { # delete all reading records for items returned # uses a hardcoded date ridiculously far in the future - AnonymiseIssueHistory('2999-12-12',$borrowernumber); + my ($rows,$err_history_not_deleted) = AnonymiseIssueHistory('2999-12-12',$borrowernumber); # confirm the user the deletion has been done - $template->param('deleted' => 1); + if ( !$err_history_not_deleted ) { + $template->param( 'deleted' => 1 ); + } + else { + $template->param( 'err_history_not_deleted' => 1 ); + } } # get borrower privacy .... my ( $borr ) = GetMemberDetails( $borrowernumber );