Bugzilla – Attachment 171872 Details for
Bug 37982
Serial collection edit form can be GET
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37982: Replace edit form with GET
Bug-37982-Replace-edit-form-with-GET.patch (text/plain), 2.06 KB, created by
Jonathan Druart
on 2024-09-23 09:21:20 UTC
(
hide
)
Description:
Bug 37982: Replace edit form with GET
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2024-09-23 09:21:20 UTC
Size:
2.06 KB
patch
obsolete
>From 64d98bd4b50ba1bffe96f13f2c8c0a32a1fc541e Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 23 Sep 2024 11:13:45 +0200 >Subject: [PATCH] Bug 37982: Replace edit form with GET > >Caught by tests from bug 37728 > > # $VAR3 = 'koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt:158'; > >We don't really need the form to be POSTed, we should not reach the URL maxlength. >The UI will certainly explode if there are lot of items to edit anyway. >The code is not clear on this page as we are sending several forms using >the items selected from this table. But this one form is used to display >the edit form and so can be GET (and better as the URL can be shared). >The other actions have their own form (in modals mostly). > >Test plan: >Create a subscription and go to the serial collection page. >Make sure at least one item is select and click the "Edit" button. >No behaviour change expected here, the edit form should still be >displayed. >Try the other actions on top of the table and confirm they are still >working as before. >--- > .../prog/en/modules/serials/serials-collection.tt | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt >index 7d4d6954f83..958b00837ed 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt >@@ -155,8 +155,7 @@ > [% END # /IF subscriptions %] > > [% IF ( years ) %] >- <form name="edition" action="/cgi-bin/koha/serials/serials-edit.pl" method="post"> >- [% INCLUDE 'csrf-token.inc' %] >+ <form name="edition" action="/cgi-bin/koha/serials/serials-edit.pl" method="get"> > [% WRAPPER tabs id= "subscription_years" %] > [% WRAPPER tabs_nav %] > [% FOREACH year IN years %] >-- >2.34.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 37982
:
171872
|
171911
|
171921