[Bug 14655] New: Cannot checkin without Anonymous Patron
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Bug ID: 14655 Summary: Cannot checkin without Anonymous Patron Change sponsored?: --- Product: Koha Version: 3.18 Hardware: All OS: All Status: NEW Severity: blocker Priority: P5 - low Component: Circulation Assignee: koha-bugs@lists.koha-community.org Reporter: nengard@gmail.com QA Contact: testopia@bugs.koha-community.org CC: gmcharlt@gmail.com, kyle.m.hall@gmail.com 3.18.9 has a huge error. You cannot check in if you don't have an anonymous patron. Most of our partners don't allow opacprivacy or anonymous suggestions so they don't have an anonymous patron. You shouldn't need one if you don't do anything with anonymizing. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |9942 CC| |jonathan.druart@bugs.koha-c | |ommunity.org --- Comment #1 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- I don't reproduce, please return the result of the following commands/queries mysq> select value from systempreferences where variable="OPACPrivacy" or variable="AnonymousPatron"; $ git show-branch HEAD v3.18.09 # To be sure it's a pure 3.18.09 Referenced Bugs: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9942 [Bug 9942] Circulation module cannot anonymise if anonymity user is not set up correctly. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #2 from Nicole C. Engard <nengard@gmail.com> --- For the record: http://irc.koha-community.org/koha/2015-08-06#i_1713701 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #3 from Nicole C. Engard <nengard@gmail.com> --- Jonathan, We are using package sites - that might be why you can't reproduce. Sorry I left out that info. Nicole -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Tom Misilo <misilot@fit.edu> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |misilot@fit.edu -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Jesse Weaver <jweaver@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jweaver@bywatersolutions.co | |m --- Comment #4 from Jesse Weaver <jweaver@bywatersolutions.com> --- The issue here is that there can be a large number of patrons with a privacy of 2 ("Never") even if all of the following are true: * OPACPrivacy is off * All patron categories have a default privacy of Forever or Default This can occur for three major reasons: * The patrons had their privacy settings changed when OPACPrivacy was previously enabled, but it has since been disabled * The patrons were imported with a privacy of 2 * A patron category had a default privacy setting of Never at the time the patron was created (if the category's default privacy setting is later changed, it does not affect the privacy of previously created patrons) This isn't an edge case; we have a large number of libraries whose checkins were silently failing after a bugfix upgrade due to one of the three scenarios above. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |katrin.fischer@bsz-bw.de --- Comment #5 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Hm, so it looks like the main problme is a mismatch of the template logic to display the warning with the logic in the module? (privacy setting of the borrower vs. system preferences?) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|3.18 |master --- Comment #6 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- As this patch is in master - I am changing the version. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |In Discussion --- Comment #7 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- (In reply to Jesse Weaver from comment #4)
The issue here is that there can be a large number of patrons with a privacy of 2 ("Never") even if all of the following are true:
* OPACPrivacy is off * All patron categories have a default privacy of Forever or Default
This can occur for three major reasons:
* The patrons had their privacy settings changed when OPACPrivacy was previously enabled, but it has since been disabled
Restricting the privacy of the users is really not kind. Especially if they had chosen to protect their data previously. I'd say it's like breaking a contract :)
* The patrons were imported with a privacy of 2
They should not have been imported with privacy=2 if OPACPrivacy is off.
* A patron category had a default privacy setting of Never at the time the patron was created (if the category's default privacy setting is later changed, it does not affect the privacy of previously created patrons)
Same as before, there is an inconsistency in the configuration ('Never' with OPACPrivacy off).
This isn't an edge case; we have a large number of libraries whose checkins were silently failing after a bugfix upgrade due to one of the three scenarios above.
You should have got a big warnings during the updatedatabase process, don't you got it? (In reply to Katrin Fischer from comment #5)
Hm, so it looks like the main problme is a mismatch of the template logic to display the warning with the logic in the module? (privacy setting of the borrower vs. system preferences?)
The checks look good to me. We could apply the following changes: diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 7813e33..2e06ff2 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -2077,7 +2077,7 @@ sub MarkIssueReturned { my ( $borrowernumber, $itemnumber, $dropbox_branch, $returndate, $privacy ) = @_; my $anonymouspatron; - if ( $privacy == 2 ) { + if ( $privacy == 2 and C4::Context->preference('OPACPrivacy') ) { But I still think the privacy should be respected and the data updated if inconsistencies exist. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|blocker |critical -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #8 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- The suggested change looks good to me - I think that should work. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #9 from Jesse Weaver <jweaver@bywatersolutions.com> --- (In reply to Jonathan Druart from comment #7)
(In reply to Jesse Weaver from comment #4)
The issue here is that there can be a large number of patrons with a privacy of 2 ("Never") even if all of the following are true:
* OPACPrivacy is off * All patron categories have a default privacy of Forever or Default
This can occur for three major reasons:
* The patrons had their privacy settings changed when OPACPrivacy was previously enabled, but it has since been disabled
Restricting the privacy of the users is really not kind. Especially if they had chosen to protect their data previously. I'd say it's like breaking a contract :)
* The patrons were imported with a privacy of 2
They should not have been imported with privacy=2 if OPACPrivacy is off.
* A patron category had a default privacy setting of Never at the time the patron was created (if the category's default privacy setting is later changed, it does not affect the privacy of previously created patrons)
Same as before, there is an inconsistency in the configuration ('Never' with OPACPrivacy off).
This isn't an edge case; we have a large number of libraries whose checkins were silently failing after a bugfix upgrade due to one of the three scenarios above.
You should have got a big warnings during the updatedatabase process, don't you got it?
(In reply to Katrin Fischer from comment #5)
Hm, so it looks like the main problme is a mismatch of the template logic to display the warning with the logic in the module? (privacy setting of the borrower vs. system preferences?)
The checks look good to me.
We could apply the following changes:
diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 7813e33..2e06ff2 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -2077,7 +2077,7 @@ sub MarkIssueReturned { my ( $borrowernumber, $itemnumber, $dropbox_branch, $returndate, $privacy ) = @_;
my $anonymouspatron; - if ( $privacy == 2 ) { + if ( $privacy == 2 and C4::Context->preference('OPACPrivacy') ) {
But I still think the privacy should be respected and the data updated if inconsistencies exist.
Oh, indeed. Would it be possible to show the warning if anonymouspatron is not set and a patron exists with privacy == 2? It's not necessarily a huge issue with how the backend works, the issue is when the checkin explodes with no indication as to why. Doing this with "SELECT borrowernumber FROM borrowers WHERE privacy = 2 LIMIT 1" ran in 0.02s on one of our largest sites (~125K borrowers), so it is practical. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #10 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- (In reply to Jesse Weaver from comment #9)
Doing this with "SELECT borrowernumber FROM borrowers WHERE privacy = 2 LIMIT 1" ran in 0.02s on one of our largest sites (~125K borrowers), so it is practical.
I don't understand why you want that, could you please detail? Have a look at the updatedb entry 3.21.00.013, we were careful to raise a warning if needed. I don't think it's worth to add a select statement for every checkin. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #11 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- Created attachment 41630 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41630&action=edit Bug 14655: Add a warning if the checkin will fail On the checkin and checkout page, the checkin will fail if the patron has requested the privacy and the AnonymousPatron is not correctly set. This patch adds a warning message on both pages. Test plan: 0/ Be sure you don't have any patron with privacy=2 (Never) 1/ Set OPACPrivacy, not AnonymousPatron 2/ Go on the checkin, you should a warning (same as before this patch). 3/ Set the privacy=2 for a patron 4/ Go on the circulation page, a warning should appear (for this specific patron) 5/ Check an item out to this patron 6/ Check the item in on the checkin page. The item is not checked in and you get a specific message for this patron. Confirm other/correct situations don't trigger the messages. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #12 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- Created attachment 41631 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41631&action=edit Bug 14655: Add a warning on the about page if patrons have requested privacy New warning on the about page if at least a patron has requested a privacy on checkin but the AnonymousPatron is not set to a valid patron. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs@lists.koha-commun |jonathan.druart@bugs.koha-c |ity.org |ommunity.org -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |http://bugs.koha-community. | |org/bugzilla3/show_bug.cgi? | |id=6756 -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #13 from Marc Véron <veron@veron.ch> --- Created attachment 42048 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=42048&action=edit [Signed-off] Bug 14655: Add a warning if the checkin will fail On the checkin and checkout page, the checkin will fail if the patron has requested the privacy and the AnonymousPatron is not correctly set. This patch adds a warning message on both pages. Test plan: 0/ Be sure you don't have any patron with privacy=2 (Never) 1/ Set OPACPrivacy, not AnonymousPatron 2/ Go on the checkin, you should a warning (same as before this patch). 3/ Set the privacy=2 for a patron 4/ Go on the circulation page, a warning should appear (for this specific patron) 5/ Check an item out to this patron 6/ Check the item in on the checkin page. The item is not checked in and you get a specific message for this patron. Confirm other/correct situations don't trigger the messages. Followed test plan. Works as expected. Signed-off-by: Marc Véron <veron@veron.ch> -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Marc Véron <veron@veron.ch> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |veron@veron.ch Attachment #41630|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #14 from Marc Véron <veron@veron.ch> --- Created attachment 42049 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=42049&action=edit [Signed-off] Bug 14655: Add a warning on the about page if patrons have requested privacy New warning on the about page if at least a patron has requested a privacy on checkin but the AnonymousPatron is not set to a valid patron. Works as expected. Signed-off-by: Marc Véron <veron@veron.ch> -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Marc Véron <veron@veron.ch> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #41631|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Marc Véron <veron@veron.ch> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA --- Comment #15 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- This basically works, but 2 small glitches: - When returning the item without the proper configuration, the warning message is shown, but the item still appears in the table below, even tho it was not checked in. It shows as: Not checked out. I think it should show an error and not appear in the table, as it has not been checked in. - The error message is not ideal - I think you can't say 'a privacy': Error: This patron has requested a privacy on returning item but the AnonymousPatron pref is not set correctly. Suggestion: This patron has requested their circulation history be anonymized on check-in, but the AnonymousPatron system preference is not set correctly. It's also showing on checkout, so would have to be changed in 2 places. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #16 from Jesse Weaver <jweaver@bywatersolutions.com> --- (In reply to Katrin Fischer from comment #15)
This basically works, but 2 small glitches:
- When returning the item without the proper configuration, the warning message is shown, but the item still appears in the table below, even tho it was not checked in. It shows as: Not checked out. I think it should show an error and not appear in the table, as it has not been checked in.
Agreed; this quirk was very confusing to us and our partners before we figured out the issue.
- The error message is not ideal - I think you can't say 'a privacy': Error: This patron has requested a privacy on returning item but the AnonymousPatron pref is not set correctly.
Suggestion: This patron has requested their circulation history be anonymized on check-in, but the AnonymousPatron system preference is not set correctly.
It's also showing on checkout, so would have to be changed in 2 places.
May I make the small suggestion of "... the AnonymousPatron system preference is empty or incorrect."? Tiny quibble, but either is an issue. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #17 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- Created attachment 42517 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=42517&action=edit Bug 14655: Fix wording -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off --- Comment #18 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- (In reply to Katrin Fischer from comment #15)
This basically works, but 2 small glitches:
- When returning the item without the proper configuration, the warning message is shown, but the item still appears in the table below, even tho it was not checked in. It shows as: Not checked out. I think it should show an error and not appear in the table, as it has not been checked in.
Well, I consider this completely out of the scope of this bug fix. The error/warning messages are not correctly handled at all in this area. I would prefer to try and fix globally this issue considering it as an enh.
- The error message is not ideal - I think you can't say 'a privacy': Error: This patron has requested a privacy on returning item but the AnonymousPatron pref is not set correctly.
Suggestion: This patron has requested their circulation history be anonymized on check-in, but the AnonymousPatron system preference is not set correctly.
It's also showing on checkout, so would have to be changed in 2 places.
Done. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #19 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- I think you are right - fixing the first bit is more urgent. I think we should handle the 'not checked in but shows as checked in' case on a separate bug (bug not enh). Compromise? :) -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #20 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- (In reply to Katrin Fischer from comment #19)
I think you are right - fixing the first bit is more urgent. I think we should handle the 'not checked in but shows as checked in' case on a separate bug (bug not enh). Compromise? :)
I had a quick look at the code this morning, it looks a bit more complicated. Different errors should also be caught. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #21 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Not sure I understand - should this move on to QA and the other problems be dealt with on another bug - or does this patch need more work? -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #22 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- (In reply to Katrin Fischer from comment #21)
Not sure I understand - should this move on to QA and the other problems be dealt with on another bug - or does this patch need more work?
What you described already exists before this patch set. The errors handling in this area is really bad and won't be trivial to implement. If we don't want to block this one, it should be pushed as it. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #23 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- That's ok, I was just not sure what you meant with your last comment. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |http://bugs.koha-community. | |org/bugzilla3/show_bug.cgi? | |id=14821 --- Comment #24 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- I have filed a separate bug for the 'check-in list' issue: Bug 14821 -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #25 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Created attachment 42540 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=42540&action=edit [PASSED QA] Bug 14655: Add a warning if the checkin will fail On the checkin and checkout page, the checkin will fail if the patron has requested the privacy and the AnonymousPatron is not correctly set. This patch adds a warning message on both pages. Test plan: 0/ Be sure you don't have any patron with privacy=2 (Never) 1/ Set OPACPrivacy, not AnonymousPatron 2/ Go on the checkin, you should a warning (same as before this patch). 3/ Set the privacy=2 for a patron 4/ Go on the circulation page, a warning should appear (for this specific patron) 5/ Check an item out to this patron 6/ Check the item in on the checkin page. The item is not checked in and you get a specific message for this patron. Confirm other/correct situations don't trigger the messages. Followed test plan. Works as expected. Signed-off-by: Marc Véron <veron@veron.ch> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #26 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Created attachment 42541 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=42541&action=edit [PASSED QA] Bug 14655: Add a warning on the about page if patrons have requested privacy New warning on the about page if at least a patron has requested a privacy on checkin but the AnonymousPatron is not set to a valid patron. Works as expected. Signed-off-by: Marc Véron <veron@veron.ch> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 --- Comment #27 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Created attachment 42542 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=42542&action=edit [PASSED QA] Bug 14655: Fix wording Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Fixed a missing space after Error: :) -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #42048|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #42049|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #42517|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |14821 See Also|http://bugs.koha-community. | |org/bugzilla3/show_bug.cgi? | |id=14821 | Referenced Bugs: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14821 [Bug 14821] Don't show item in checked in list, when it wasn't checked in -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to Master CC| |tomascohen@gmail.com --- Comment #28 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Patches pushed to master. Thanks Jonathan! -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Chris Cormack <chris@bigballofwax.co.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |chris@bigballofwax.co.nz Status|Pushed to Master |Pushed to Stable --- Comment #29 from Chris Cormack <chris@bigballofwax.co.nz> --- Pushed to 3.20.x will be in 3.20.4 -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655 Liz Rea <liz@catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |liz@catalyst.net.nz --- Comment #30 from Liz Rea <liz@catalyst.net.nz> --- Pushed to 3.18.x will be in 3.18.11 -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org