Bug 19317: (bug 18966 follow-up) Remove leftover
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 14 Sep 2017 13:57:40 +0000 (10:57 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 29 Sep 2017 16:04:58 +0000 (13:04 -0300)
commit0aec9e11d5fa355738cb3475ad72c4aad8efeafa
tree7eab73891d3b1eecd2397e6a343f58b0f46a2a13
parentbb61d5bc384102fe1dc8db4e69bfdb797337b968
Bug 19317: (bug 18966 follow-up) Remove leftover

Nothing important here, but this line should have been removed by bug
18966:

2177         # Update the fines
2178         $dbh->do(q|UPDATE accountlines SET issue_id = ? WHERE
issue_id = ?|, undef, $old_checkout->issue_id, $issue->issue_id);

The issue_id is now the same when moved from issues to old_issues. We do
not need to update the accountlines table.

No test plan here, you need to understand previous changes to validate
this patch.

Signed-off-by: Colin Campbell <colin.campbell@ptfs-europe.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
C4/Circulation.pm