https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42095

--- Comment #3 from Oleg Vasylenko <[email protected]> ---
Thank you for the feedback and for pointing to Bug 40307.

After reviewing the plugin's code and its purpose, I believe that changing the
request method to GET is indeed the better solution here.

The unimarc_field_4XX.pl plugin acts as a lookup tool:
  1. It opens a popup with a search form.
  2. The user enters search criteria (Title, Author, ISBN, etc.) to find a
record in the catalog.
  3. The script retrieves results and displays them.
  4. Once a record is chosen, JavaScript populates the 4XX subfields in the
main cataloging form.

No database modifications (CUD operations) are performed during the search
process. The number of parameters in the search form is also standard and
unlikely to hit URL character limits.

Switching to GET would:
  • Align with the coding guidelines for idempotent actions.
  • Resolve the current breakage caused by the cud- prefix mismatch between the
template and the script.
  • Match the approach taken in Bug 40307.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to