[Bug 41167] New: Rewrite Rules missing in TAR packages
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Bug ID: 41167 Summary: Rewrite Rules missing in TAR packages Initiative type: --- Sponsorship --- status: Product: Koha Version: 25.05 Hardware: All OS: All Status: NEW Severity: major Priority: P5 - low Component: Installation and upgrade (command-line installer) Assignee: koha-bugs@lists.koha-community.org Reporter: vivek.openlx@gmail.com QA Contact: testopia@bugs.koha-community.org CC: tomascohen@gmail.com Dear Koha Team, In the Koha 25.05.x version, I noticed that the file koha-httpd.conf in the tarball (or Git-based) installation is missing several important rewrite rules under the intranet section. Because of this, when Koha is installed from source (tar or Git), many modules on the staff interface (such as Acquisitions) do not function correctly. However, when Koha is installed via APT packages, the correct koha-httpd.conf file is included, and everything works properly. The following rewrite rules are missing and should be added: RewriteRule ^/cgi-bin/koha/erm/.$ /cgi-bin/koha/erm/erm.pl [PT] RewriteCond %{REQUEST_URI} !^/cgi-bin/koha/preservation/..pl$ RewriteRule ^/cgi-bin/koha/preservation/.$ /cgi-bin/koha/preservation/home.pl [PT] RewriteRule ^/cgi-bin/koha/admin/record_sources(.)?$ /cgi-bin/koha/admin/record_sources.pl$1 [PT] RewriteCond %{QUERY_STRING} booksellerid=(.) RewriteRule ^/cgi-bin/koha/acqui/supplier.pl$ /cgi-bin/koha/acquisition/vendors/%1? [R] RewriteRule ^/cgi-bin/koha/acquisition/vendors(.)?$ /cgi-bin/koha/acqui/vendors.pl$1 [PT] Please include these rules in the official koha-httpd.conf source TAR package file for future releases to ensure full functionality when Koha is installed from the tarball or Git source. Thank you for your attention to this issue. -- 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=41167 David Cook <dcook@prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook@prosentient.com.au Summary|Rewrite Rules missing in |Rewrite Rules missing in |TAR packages |etc/koha-httpd.conf --- Comment #1 from David Cook <dcook@prosentient.com.au> --- Looking at "etc/koha-httpd.conf", it looks like the erm and preservation rules have been put into the OPAC virtualhost by accident instead of the staff interface virtualhost. And it does look like the others are missing all together. This should've been caught during QA of those changes. -- 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=41167 vivek <vivek.openlx@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|koha-bugs@lists.koha-commun |vivek.openlx@gmail.com |ity.org | --- Comment #2 from vivek <vivek.openlx@gmail.com> --- Created attachment 188883 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=188883&action=edit Proposed patch for Bug 41167 – Add missing rewrite rules in koha-httpd.conf Proposed patch for Bug 41167. This patch adds missing RewriteRules for ERM, Preservation and Acquisition modules in koha-httpd.conf to restore staff client functionality. Test plan: 1. Apply patch 2. Restart Apache 3. Access acquisitions and ERM pages 4. Confirm functionality restored Signed-off-by: Vivek Kumar <vivek.kumar@bestbookbuddies.com>" -- 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=41167 Paul Derscheid <paul.derscheid@lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |paul.derscheid@lmscloud.de Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 David Cook <dcook@prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #3 from David Cook <dcook@prosentient.com.au> --- Thanks for the patch, Vivek, but it looks like there's quite a few mistakes. For instance, you're missing asterisks throughout the rules. You'll also need to remove the two erroneous RewriteRules from the OPAC virtualhost: RewriteRule ^/cgi-bin/koha/erm/.*$ /cgi-bin/koha/erm/erm.pl [PT] RewriteRule ^/cgi-bin/koha/preservation/.*$ /cgi-bin/koha/preservation/home.pl [PT] -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #4 from David Cook <dcook@prosentient.com.au> --- For reviewers, the following rules come from: RewriteRule ^/cgi-bin/koha/erm/.*$ /cgi-bin/koha/erm/erm.pl [PT] RewriteCond %{REQUEST_URI} !^/cgi-bin/koha/preservation/.*.pl$ RewriteRule ^/cgi-bin/koha/preservation/.*$ /cgi-bin/koha/preservation/home.pl [PT] RewriteRule ^/cgi-bin/koha/admin/record_sources(.*)?$ /cgi-bin/koha/admin/record_sources.pl$1 [PT] RewriteCond %{QUERY_STRING} booksellerid=(.*) RewriteRule ^/cgi-bin/koha/acqui/supplier.pl$ /cgi-bin/koha/acquisition/vendors/%1? [R] RewriteRule ^/cgi-bin/koha/acquisition/vendors(.*)?$ /cgi-bin/koha/acqui/vendors.pl$1 [PT] -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #5 from David Cook <dcook@prosentient.com.au> --- For reviewers, the following rules come from debian/templates/apache-shared-intranet.conf: RewriteRule ^/cgi-bin/koha/erm/.*$ /cgi-bin/koha/erm/erm.pl [PT] RewriteCond %{REQUEST_URI} !^/cgi-bin/koha/preservation/.*.pl$ RewriteRule ^/cgi-bin/koha/preservation/.*$ /cgi-bin/koha/preservation/home.pl [PT] RewriteRule ^/cgi-bin/koha/admin/record_sources(.*)?$ /cgi-bin/koha/admin/record_sources.pl$1 [PT] RewriteCond %{QUERY_STRING} booksellerid=(.*) RewriteRule ^/cgi-bin/koha/acqui/supplier.pl$ /cgi-bin/koha/acquisition/vendors/%1? [R] RewriteRule ^/cgi-bin/koha/acquisition/vendors(.*)?$ /cgi-bin/koha/acqui/vendors.pl$1 [PT] -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #6 from David Cook <dcook@prosentient.com.au> --- (In reply to vivek from comment #2)
Test plan: 1. Apply patch 2. Restart Apache 3. Access acquisitions and ERM pages 4. Confirm functionality restored
This test plan won't work for anyone using koha-testing-docker, which means it'll be tricky to get someone to test. I'm still thinking about how I'd test this in koha-testing-docker. Because of the nature of the patch, we might be able to get away with just a visual review, but I'm not sure. When you provide an updated patch, I might tweak my KTD to expose a couple extra ports, and then do a "single" installation which will work with it. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #7 from vivek <vivek.openlx@gmail.com> --- Created attachment 189141 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=189141&action=edit Follow-up patch for Bug 41167 – Correct rewrite rules in koha-httpd.conf This is a follow-up patch for Bug 41167 – Add missing rewrite rules in koha-httpd.conf. Changes made in this follow-up: - Added missing asterisks (*) in rewrite rule patterns. - Removed two erroneous RewriteRules from the OPAC virtualhost. - Ensured all ERM, Preservation, and Acquisition rewrite rules are correctly placed under the intranet virtualhost. These corrections address the issues noted by David Cook in Comment 3 and Comment 5. Test plan: 1. Apply patch. 2. Restart Apache. 3. Access ERM, Preservation, and Acquisitions modules in the staff interface. 4. Confirm all pages load correctly without 404 errors or misrouted URLs. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 David Cook <dcook@prosentient.com.au> 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=41167 David Cook <dcook@prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #188883|0 |1 is obsolete| | --- Comment #8 from David Cook <dcook@prosentient.com.au> --- Created attachment 189248 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=189248&action=edit Bug 41167: Fix missing rewrite rules in koha-httpd.conf This patch adds missing RewriteRules for ERM, Preservation and Acquisition modules in koha-httpd.conf to restore staff client functionality. Test plan: 1. Apply patch 2. Restart Apache 3. Access acquisitions and ERM pages 4. Confirm functionality restored Signed-off-by: Vivek Kumar <vivek.kumar@bestbookbuddies.com> Signed-off-by: David Cook <dcook@prosentient.com.au> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #9 from David Cook <dcook@prosentient.com.au> --- Created attachment 189249 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=189249&action=edit Bug 41167: (follow-up) Correct rewrite rules in koha-httpd.conf This follow-up patch fixes issues from the initial patch for Bug 41167: - Adds missing asterisks (*) in rewrite rule patterns - Removes erroneous RewriteRules from the OPAC virtualhost - Ensures all ERM, Preservation, and Acquisition rewrite rules are correctly placed under the intranet virtualhost Test plan: 1. Apply patch 2. Restart Apache 3. Access ERM, Preservation, and Acquisitions modules 4. Confirm pages load correctly without 404 or routing errors Signed-off-by: Vivek Kumar <vivek.kumar@bestbookbuddies.com> Signed-off-by: David Cook <dcook@prosentient.com.au> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 David Cook <dcook@prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #189141|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #10 from David Cook <dcook@prosentient.com.au> --- Fixed up the commit title on the second patch. These probably could've been squashed into two patches, but I left them as two separate ones anyway. Overall, it looks good. I'll include my test plan in a separate comment. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #11 from David Cook <dcook@prosentient.com.au> --- Test plan: 0. sudo mkdir /opt/koha 1. sudo chown -R kohadev-koha:kohadev-koha /opt/koha 2a. perl Makefile.PL 2b. Installation mode (dev, single, standard) [standard] single 2c. Please specify the directory in which to install Koha [/var/lib/koha/kohadev/koha] /opt/koha 2d. Use defaults for the rest 3. make 4. make install 5. Update /opt/koha/etc/koha-httpd.conf to use the same ports as in /etc/apache2/sites-enabled/kohadev.conf 6. sudo a2dissite kohadev.conf 7. sudo cp /opt/koha/etc/koha-httpd.conf /etc/apache2/sites-enabled/koha-httpd.conf 8. Copy any important details (like DB details) from /etc/koha/sites/kohadev/koha-conf.xml to /opt/koha/etc/koha-conf.xml 9. Add following to VirtualHosts in /etc/apache2/sites-enabled/koha-httpd.conf <Directory "/opt/koha"> Require all granted </Directory> 10. sudo service apache2 restart 11a. Go to http://localhost:8081/cgi-bin/koha/acqui/acqui-home.pl and click "Search" in the "Search vendors" area 11b. Note the UI eventually loads 12. Enable the syspref ERMModule 13. Go to http://localhost:8081/cgi-bin/koha/mainpage.pl 14. Click on "E-resource management" 15. Note that the ERM interface eventually loads 16. Enable the syspref PreservationModule 17. Go to http://localhost:8081/cgi-bin/koha/mainpage.pl 18. Click on "Preservation" 19. Note the UI eventually loads 20. Go to http://localhost:8081/cgi-bin/koha/admin/admin-home.pl 21. Click on "Record sources" 22. Note the UI eventually loads -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #12 from David Cook <dcook@prosentient.com.au> --- Good catch, Vivek, and thanks for the patch. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial 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=41167 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #189248|0 |1 is obsolete| | Attachment #189249|0 |1 is obsolete| | --- Comment #13 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 189252 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=189252&action=edit Bug 41167: Fix missing rewrite rules in koha-httpd.conf This patch adds missing RewriteRules for ERM, Preservation and Acquisition modules in koha-httpd.conf to restore staff client functionality. Test plan: 1. Apply patch 2. Restart Apache 3. Access acquisitions and ERM pages 4. Confirm functionality restored Signed-off-by: Vivek Kumar <vivek.kumar@bestbookbuddies.com> Signed-off-by: David Cook <dcook@prosentient.com.au> Bug 41167: (follow-up) Correct rewrite rules in koha-httpd.conf This follow-up patch fixes issues from the initial patch for Bug 41167: - Adds missing asterisks (*) in rewrite rule patterns - Removes erroneous RewriteRules from the OPAC virtualhost - Ensures all ERM, Preservation, and Acquisition rewrite rules are correctly placed under the intranet virtualhost Test plan: 1. Apply patch 2. Restart Apache 3. Access ERM, Preservation, and Acquisitions modules 4. Confirm pages load correctly without 404 or routing errors Signed-off-by: Vivek Kumar <vivek.kumar@bestbookbuddies.com> Signed-off-by: David Cook <dcook@prosentient.com.au> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|25.05 |Main CC| |m.de.rooy@rijksmuseum.nl QA Contact|testopia@bugs.koha-communit |m.de.rooy@rijksmuseum.nl |y.org | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #14 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Squashed them now. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Pedro Amorim <pedro.amorim@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |37893 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37893 [Bug 37893] Migrate some SIP configuration into the staff interface -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #15 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 189595 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=189595&action=edit Bug 41167: Add test to compare both apache conf Patch from commit 6df0f48 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart@gmail.com --- Comment #16 from Jonathan Druart <jonathan.druart@gmail.com> --- Marcel, David, I've written a quick test for this, but it fails: The following line is in the debian version, not in koha-httpd.conf, is that correct? # RewriteRule ^/cgi-bin/koha/(C4|debian|docs|etc|installer/data|install_misc|Koha|misc|selenium|t|test|tmp|xt)/|\.PL$ /notfound [PT] -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed 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=41167 --- Comment #17 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- (In reply to Jonathan Druart from comment #16)
Marcel, David, I've written a quick test for this, but it fails:
The following line is in the debian version, not in koha-httpd.conf, is that correct?
# RewriteRule ^/cgi-bin/koha/(C4|debian|docs|etc|installer/ data|install_misc|Koha|misc|selenium|t|test|tmp|xt)/|\.PL$ /notfound [PT]
That is forgotten in httpd.conf. Doesnt hurt there too. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #18 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- xt/check_apache_conf.t .. Can't locate Data/Printer.pm in @INC -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #19 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- (In reply to Marcel de Rooy from comment #18)
xt/check_apache_conf.t .. Can't locate Data/Printer.pm in @INC
Will remove it. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- 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=41167 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #189252|0 |1 is obsolete| | --- Comment #20 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 189626 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=189626&action=edit Bug 41167: Fix missing rewrite rules in koha-httpd.conf This patch adds missing RewriteRules for ERM, Preservation and Acquisition modules in koha-httpd.conf to restore staff client functionality. Test plan: 1. Apply patch 2. Restart Apache 3. Access acquisitions and ERM pages 4. Confirm functionality restored Signed-off-by: Vivek Kumar <vivek.kumar@bestbookbuddies.com> Signed-off-by: David Cook <dcook@prosentient.com.au> Bug 41167: (follow-up) Correct rewrite rules in koha-httpd.conf This follow-up patch fixes issues from the initial patch for Bug 41167: - Adds missing asterisks (*) in rewrite rule patterns - Removes erroneous RewriteRules from the OPAC virtualhost - Ensures all ERM, Preservation, and Acquisition rewrite rules are correctly placed under the intranet virtualhost Test plan: 1. Apply patch 2. Restart Apache 3. Access ERM, Preservation, and Acquisitions modules 4. Confirm pages load correctly without 404 or routing errors Signed-off-by: Vivek Kumar <vivek.kumar@bestbookbuddies.com> Signed-off-by: David Cook <dcook@prosentient.com.au> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #189595|0 |1 is obsolete| | --- Comment #21 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 189627 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=189627&action=edit Bug 41167: Add test to compare both apache conf Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> [EDIT] chmod 755, shebang, remove Data::Printer, enable NoWarnings one regex delimiter; replaced a grep by a map -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #22 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 189628 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=189628&action=edit Bug 41167: Add missing line to etx/koha-httpd.conf Test plan: Run xt/check_apache_conf.t again. Should pass now. Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #23 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Resolved [FAIL] xt/check_apache_conf.t FAIL critic Don't modify $_ in list functions at line 32, column 9. See page 114 of PBP. (Severity: 5) -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to main Version(s)| |25.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #24 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- Nice work everyone! Pushed to main for 25.11 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Paul Derscheid <paul.derscheid@lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|25.11.00 |25.11.00,25.05.06 released in| | Status|Pushed to main |Pushed to stable -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 --- Comment #25 from Paul Derscheid <paul.derscheid@lmscloud.de> --- Nice work everyone! Pushed to 25.05.x -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Fridolin Somers <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=38010 CC| |fridolin.somers@biblibre.co | |m -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Fridolin Somers <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable Version(s)|25.11.00,25.05.06 |25.11.00,25.05.06,24.11.11 released in| | --- Comment #26 from Fridolin Somers <fridolin.somers@biblibre.com> --- Pushed to 24.11.x for 24.11.11 With a patch to not add rewrites for vendor -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41167 Wainui Witika-Park <wainuiwitikapark@catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Needs documenting CC| |wainuiwitikapark@catalyst.n | |et.nz --- Comment #27 from Wainui Witika-Park <wainuiwitikapark@catalyst.net.nz> --- Not backporting to 22.11 unless requested -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org