Bugzilla – Attachment 169867 Details for
Bug 37523
CSRF error when modifying an existing patron record
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37523: CSRF error when modifying an existing patron record
Bug-37523-CSRF-error-when-modifying-an-existing-pa.patch (text/plain), 3.26 KB, created by
Roman Dolny
on 2024-07-30 14:37:55 UTC
(
hide
)
Description:
Bug 37523: CSRF error when modifying an existing patron record
Filename:
MIME Type:
Creator:
Roman Dolny
Created:
2024-07-30 14:37:55 UTC
Size:
3.26 KB
patch
obsolete
>From 49d3304108464291de9d94bd10c12ea92e9c45ad Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Tue, 30 Jul 2024 12:13:23 +0000 >Subject: [PATCH] Bug 37523: CSRF error when modifying an existing patron > record > >This patch modifies the patron entry template to avoid a CSRF error when >clicking the "Edit existing record" button after a duplicate patron is >found. The operation should be GET and thus can be a link. > >To test, apply the patch and go to Patrons. > >- If you aren't using the default testing data you should first locate > an existing patron record so you can refer to the details. >- Start the process of creating a new patron record. >- Use the existing patron's data to fill out the form. > - With the default data you can use: > - Surname: Bennett > - First name: Pamela > - Date of birth: 09/16/1946 > - Any random new card number >- When you click "Save" you should get a duplicate patron warning: > "Duplicate patron record?" > - Click "It is a duplicate. Edit existing record." > - You should be taken to the edit form for the existing patron. > >Sponsored-by: Athens County Public Libraries >Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl> >--- > .../prog/en/modules/members/memberentrygen.tt | 9 +-------- > 1 file changed, 1 insertion(+), 8 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >index c12e44c388..cb02603834 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >@@ -144,7 +144,7 @@ legend.collapsed i.fa.fa-caret-down::before { > <div class="dialog alert"> > <h3>Duplicate patron record?</h3> > <p><a class="popup_patronview" href="/cgi-bin/koha/members/moremember.pl?print=brief&borrowernumber=[% check_member | uri %]"><i class="fa-solid fa-window-restore"></i> View existing record</a></p> >- <button id="duplicate" type="submit" class="new"> <i class="fa-solid fa-pencil" aria-hidden="true"></i> It is a duplicate. Edit existing record </button> >+ <a href="/cgi-bin/koha/members/memberentry.pl?op=edit_form&borrowernumber=[% check_member | uri %]" class="btn btn-default" id="duplicate"> <i class="fa-solid fa-pencil" aria-hidden="true"></i> It is a duplicate. Edit existing record </a> > <button type="submit" id="not-duplicate" class="new"> <i class="fa fa-plus"></i> Not a duplicate. Save as new record </button> > </div> > [% END %] >@@ -1953,13 +1953,6 @@ legend.collapsed i.fa.fa-caret-down::before { > } > }); > >- $('#duplicate').on('click', function() { >- $("input[name='op']").val('edit_form'); >- $("input[name='borrowernumber']").val('[% check_member | html %]'); >- $("input[name='check_member']").val(''); >- $('#entryform').submit(); >- }); >- > $('#not-duplicate').on('click', function() { > $("input[name='nodouble']").val('1'); > $('#entryform').submit(); >-- >2.39.2
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 37523
:
169857
|
169867
|
169880
|
169916