Bugzilla – Attachment 167109 Details for
Bug 36946
Can't process pending offline circulations
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36946: Fix cud- error when processing offline circulations
Bug-36946-Fix-cud--error-when-processing-offline-c.patch (text/plain), 2.02 KB, created by
Owen Leonard
on 2024-05-23 13:27:43 UTC
(
hide
)
Description:
Bug 36946: Fix cud- error when processing offline circulations
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2024-05-23 13:27:43 UTC
Size:
2.02 KB
patch
obsolete
>From 2826e4dba00de4bbbe3a59ae967776e4e131cb3e Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Thu, 23 May 2024 13:13:06 +0000 >Subject: [PATCH] Bug 36946: Fix cud- error when processing offline > circulations > >This patch fixes a CSRF token error when processing offline >circulations. The form needed both the token parameter and to be sent as >POST. > >To test, apply the patch and go to Circulation. > >- Go to Upload offline circulation file (.koc) >- Upload a .koc file, add to offline circulation queue. >- View pending offline circulation actions. >- Check one or more transactions and click "Process" at the bottom of > the page. > - The process should complete without any JS errors, and the > checkboxes should be replaced with the text "Success." >- Perform the same test with the "Delete" button. > >Sponsored-By: Athens County Public Libraries >--- > .../intranet-tmpl/prog/en/modules/offline_circ/list.tt | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt >index f1df1f6170..86b2fc6cdd 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt >@@ -137,9 +137,14 @@ > var cb = $(this); > $.ajax({ > url: "process.pl", >- data: { 'op': 'cud-' + op, 'operationid': this.value }, >+ data: { >+ 'op': 'cud-' + op, >+ 'operationid': this.value, >+ 'csrf_token': $('meta[name="csrf-token"]').attr('content') >+ }, > async: false, > dataType: "text", >+ type: "POST", > success: function(data) { > if( data == "Added." ){ > cb.replaceWith(_("Added.")); >-- >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 36946
:
167109
|
167126
|
167144