[Bug 21068] New: NorwegianPatronDBEnable - Check for prior ModMember calls that passed 'sync'
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Bug ID: 21068 Summary: NorwegianPatronDBEnable - Check for prior ModMember calls that passed 'sync' Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Patrons Assignee: koha-bugs@lists.koha-community.org Reporter: martin.renvoize@ptfs-europe.com QA Contact: testopia@bugs.koha-community.org CC: gmcharlt@gmail.com, kyle.m.hall@gmail.com When QAing Bug 20287 the one thing I wasn't 100% sure about was line 289 which we have marked with a FIXME. I could not find anywhere in koha that passed in a sync key to ModMember and as such we believe it was safe to remove it. This bug serves as a note to get Magnus to double check our assumptions. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Martin Renvoize <martin.renvoize@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |20287 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20287 [Bug 20287] Move AddMember and ModMember to Koha::Patron -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Martin Renvoize <martin.renvoize@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs@lists.koha-commun |magnus@libriotech.no |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Magnus Enger <magnus@libriotech.no> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |benjamin.rokseth@deichman.n | |o, | |boutrosboutrosboutros@gmail | |.com --- Comment #1 from Magnus Enger <magnus@libriotech.no> --- As far as I can tell from the code and memory this is what was supposed to happen: - If NorwegianPatronDBEnable is enabled, a radio button named "sync" is added to the member add/edit form: http://git.koha-community.org/gitweb/?p=koha.git;a=blob;f=koha-tmpl/intranet... This makes it possible to turn syncing on and off for individual patrons, as required by the Norwegian patron database. - The value of "sync" from the form is then stored in the database as borrower_sync.sync: http://schema.koha-community.org/18_05/tables/borrower_sync.html here: http://git.koha-community.org/gitweb/?p=koha.git;a=blob;f=C4/Members.pm;h=a8... So the value for "sync" is passed into ModMember from the member add/edit form, if NorwegianPatronDBEnable is enabled. As far as I can tell, the FIXME at http://git.koha-community.org/gitweb/?p=koha.git;a=blob;f=Koha/Patron.pm;h=9... that now looks like this: # FIXME THIS IS BROKEN # $borrowersync->update( { 'sync' => $data{'sync'} } ); should look like this: $borrowersync->update( { 'sync' => $self->sync } ); Does that make sense? It would be great to hear the opinions of Benjamin and/or Petter at OPL on this, since they are the ones running this code in production. I'm adding them to the CC list. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Bug 21068 depends on bug 20287, which changed state. Bug 20287 Summary: Move AddMember and ModMember to Koha::Patron https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20287 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to Master |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart@bugs.koha-c | |ommunity.org Keywords| |rel_18_11_candidate -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |major -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #2 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- (In reply to Magnus Enger from comment #1)
should look like this:
$borrowersync->update( { 'sync' => $self->sync } );
$self->sync represents the Patron's attribute 'sync' (borrowers.sync), which does not exist and so the store call will explode. Is there a way to test this feature in a dev environment? -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #3 from Benjamin Rokseth <benjamin.rokseth@deichman.no> --- Tomas PM'ed me on this and I briefly explained that we use the code, though heavily modified, in production. We add a Koha::Sync object and some logic, mostly to handle flaky implementation by the vendors of the sync endpoint, but I still believe it would better reside outside Koha community code, preferably as a module to koha core. Tomas argued for a plugin and I guess that would be a similar choice but faster to implement. I dont think the community should be burdened with this kind of perifery functionality, especially since it migh be legacy at some point, and noone might notice. If we're the only ones using it, I'd say better remove it from community code and let us struggle with the implementation -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #4 from Magnus Enger <magnus@libriotech.no> --- (In reply to Benjamin Rokseth from comment #3)
preferably as a module to koha core.
What do you mean by this?
If we're the only ones using it, I'd say better remove it from community code and let us struggle with the implementation
Libriotech is also interested in having NL-functionality in Koha. It would be awesome if we could remove the code from Koha and turn it into a plugin, that we could collaborate on. But it would mean extending the plugin functionality in Koha to accomodate the necessary functionality of an NL-plugin. Is that something OPL could put some resources into? -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #5 from Martin Renvoize <martin.renvoize@ptfs-europe.com> --- I would wholeheartedly advocate this feature being ported to a plugin and I believe there's actually a very strong case for the hooks for such a plugin to be added to core to accommodate it. I'm sure NL aren't the only ones doing some level of user record syncing and as such I could see others benefiting from such core hooks. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #6 from Benjamin Rokseth <benjamin.rokseth@deichman.no> --- (In reply to Magnus Enger from comment #4)
(In reply to Benjamin Rokseth from comment #3)
preferably as a module to koha core.
What do you mean by this?
1) Oh, just my hope to see the emerge of a Koha::Core so that we could actually make Koha modular and more maintainable for larger libraries like ourselves. I will file a bug explaining the feature soon.
Libriotech is also interested in having NL-functionality in Koha. It would be awesome if we could remove the code from Koha and turn it into a plugin, that we could collaborate on. But it would mean extending the plugin functionality in Koha to accomodate the necessary functionality of an NL-plugin. Is that something OPL could put some resources into?
We could do this, though somewhat reluctant, since it defeats the purpose of 1), but I guess we could have both. Anyways we could probably leave the tables be (except maybe move hashed_pin) to a patron attribute) and add a Koha::BorrowerSync object for a general usage. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #7 from Magnus Enger <magnus@libriotech.no> --- Sounds good! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen@gmail.com --- Comment #8 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Work to be done: - Introduce a more general Koha::Sync class - Add hooks so the sync can be handled by configured plugins (besides some basic shipped implementations, if any). -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #9 from Tomás Cohen Arazi <tomascohen@gmail.com> --- (In reply to Tomás Cohen Arazi from comment #8)
Work to be done: - Introduce a more general Koha::Sync class - Add hooks so the sync can be handled by configured plugins (besides some basic shipped implementations, if any).
And remove the existing NW patron DB code :-D -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #10 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- Created attachment 77838 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=77838&action=edit Bug 21068: Remove NorwegianPatronDB related code Bug 11401 introduced code to support Norwegian national library card. This code is too specific to be part of Koha as it, it should be a plugin instead. Moreover nobody uses it, but a modified version (see comment 3). Test plan: Add/edit/delete patron and make sure there are no regressions introduced by these patches -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #11 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- Created attachment 77839 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=77839&action=edit Bug 21068: DB changes The update DB entry will not remove the prefs if NorwegianPatronDBEnable is set. This patch could be reverted locally by people using it. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|NorwegianPatronDBEnable - |Remove NorwegianPatronDB |Check for prior ModMember |related code |calls that passed 'sync' | Assignee|magnus@libriotech.no |jonathan.druart@bugs.koha-c | |ommunity.org -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |katrin.fischer@bsz-bw.de Status|Needs Signoff |In Discussion --- Comment #12 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- If I read it right Magnus didn't say that they weren't using it? Just he was not opposed to change it into a plugin. I'd like to clarify that before we move on here. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #13 from Tomás Cohen Arazi <tomascohen@gmail.com> --- (In reply to Katrin Fischer from comment #12)
If I read it right Magnus didn't say that they weren't using it? Just he was not opposed to change it into a plugin. I'd like to clarify that before we move on here.
My understanding is that Oslo was the one using it, and they are currently using a highly customized version of this. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Magnus Enger <magnus@libriotech.no> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |magnus@libriotech.no --- Comment #14 from Magnus Enger <magnus@libriotech.no> --- (In reply to Katrin Fischer from comment #12)
If I read it right Magnus didn't say that they weren't using it? Just he was not opposed to change it into a plugin. I'd like to clarify that before we move on here.
OPL is using a customised version of the code, Libriotech is not using it (yet). Removing the code from Koha is fine by me. Thanks for checking! :-) -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 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 watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Benjamin Rokseth <benjamin.rokseth@deichman.no> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #77838|0 |1 is obsolete| | --- Comment #15 from Benjamin Rokseth <benjamin.rokseth@deichman.no> --- Created attachment 78099 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=78099&action=edit Bug 21068: Remove NorwegianPatronDB related code Bug 11401 introduced code to support Norwegian national library card. This code is too specific to be part of Koha as it, it should be a plugin instead. Moreover nobody uses it, but a modified version (see comment 3). Test plan: Add/edit/delete patron and make sure there are no regressions introduced by these patches Signed-off-by: Benjamin Rokseth <benjamin.rokseth@deichman.no> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Benjamin Rokseth <benjamin.rokseth@deichman.no> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #77839|0 |1 is obsolete| | --- Comment #16 from Benjamin Rokseth <benjamin.rokseth@deichman.no> --- Created attachment 78100 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=78100&action=edit Bug 21068: DB changes The update DB entry will not remove the prefs if NorwegianPatronDBEnable is set. This patch could be reverted locally by people using it. Signed-off-by: Benjamin Rokseth <benjamin.rokseth@deichman.no> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Benjamin Rokseth <benjamin.rokseth@deichman.no> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #17 from Benjamin Rokseth <benjamin.rokseth@deichman.no> --- works as intended. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |Manual -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Medium patch Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #78099|0 |1 is obsolete| | Attachment #78100|0 |1 is obsolete| | --- Comment #18 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Created attachment 78106 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=78106&action=edit Bug 21068: Remove NorwegianPatronDB related code Bug 11401 introduced code to support Norwegian national library card. This code is too specific to be part of Koha as it, it should be a plugin instead. Moreover nobody uses it, but a modified version (see comment 3). Test plan: Add/edit/delete patron and make sure there are no regressions introduced by these patches Signed-off-by: Benjamin Rokseth <benjamin.rokseth@deichman.no> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #19 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Created attachment 78107 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=78107&action=edit Bug 21068: DB changes The update DB entry will not remove the prefs if NorwegianPatronDBEnable is set. This patch could be reverted locally by people using it. Signed-off-by: Benjamin Rokseth <benjamin.rokseth@deichman.no> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #20 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Why major? Should we change this to enh now? -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Failed QA --- Comment #21 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Why major? Also: Should we not drop the table as well in the updatedatabase? We only have 1 library using it, I think it would be better. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #22 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- Created attachment 78157 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=78157&action=edit Bug 21068: Remove table borrower_sync if needed -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #23 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- (In reply to Katrin Fischer from comment #21)
Why major?
It's major for master (actually blocker for those using it, ie. nobody) because the feature is broken since bug 20287.
Also: Should we not drop the table as well in the updatedatabase? We only have 1 library using it, I think it would be better.
Done in a follow-up (kohastructure changed in first patch). -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia@bugs.koha-communit |tomascohen@gmail.com |y.org | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #78106|0 |1 is obsolete| | --- Comment #24 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Created attachment 78287 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=78287&action=edit Bug 21068: Remove NorwegianPatronDB related code Bug 11401 introduced code to support Norwegian national library card. This code is too specific to be part of Koha as it, it should be a plugin instead. Moreover nobody uses it, but a modified version (see comment 3). Test plan: Add/edit/delete patron and make sure there are no regressions introduced by these patches Signed-off-by: Benjamin Rokseth <benjamin.rokseth@deichman.no> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #78107|0 |1 is obsolete| | --- Comment #25 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Created attachment 78288 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=78288&action=edit Bug 21068: DB changes The update DB entry will not remove the prefs if NorwegianPatronDBEnable is set. This patch could be reverted locally by people using it. Signed-off-by: Benjamin Rokseth <benjamin.rokseth@deichman.no> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #78157|0 |1 is obsolete| | --- Comment #26 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Created attachment 78289 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=78289&action=edit Bug 21068: Remove table borrower_sync if needed Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #27 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Good job! feature_creep-- cleanup++ -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Nick Clemens <nick@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick@bywatersolutions.com Status|Passed QA |Pushed to Master --- Comment #28 from Nick Clemens <nick@bywatersolutions.com> --- Awesome work all! Pushed to master for 18.11 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Martin Renvoize <martin.renvoize@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to Master |Pushed to Stable --- Comment #29 from Martin Renvoize <martin.renvoize@ptfs-europe.com> --- Added a deprecation warning to 18.05.x series rather than backporting as is. See http://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=36abd064648c... for details. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 --- Comment #30 from Martin Renvoize <martin.renvoize@ptfs-europe.com> --- Will be in 18.05.04 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Fridolin SOMERS <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers@biblibre.co | |m Resolution|--- |FIXED Status|Pushed to Stable |RESOLVED --- Comment #31 from Fridolin SOMERS <fridolin.somers@biblibre.com> --- Depends on Bug 20287 not in 17.11.x -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21068 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|rel_18_11_candidate | -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org