Bugzilla – Attachment 110910 Details for
Bug 26562
Searches are shared between sessions
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26562: [19.05.x] Removes 'searches' from localStorage on logout
Bug-26562-1905x-Removes-searches-from-localStorage.patch (text/plain), 1.69 KB, created by
Jonathan Druart
on 2020-09-29 13:17:20 UTC
(
hide
)
Description:
Bug 26562: [19.05.x] Removes 'searches' from localStorage on logout
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2020-09-29 13:17:20 UTC
Size:
1.69 KB
patch
obsolete
>From 0a081d9efac120a87f8a82a3ce4980b345bf83db Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 29 Sep 2020 11:43:00 +0200 >Subject: [PATCH] Bug 26562: [19.05.x] Removes 'searches' from localStorage on > logout > >A user recently logged in will inherit the "searches" item stored in localStorage. > >To recreate: >Log in with user A, do some searches >Note that the "searches" item is filled in with the search queries >Logout and log in with user B >Note that the "searches" item is still there >--- > koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt | 3 +++ > koha-tmpl/intranet-tmpl/prog/js/staff-global.js | 1 + > 2 files changed, 4 insertions(+) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt >index 4d73d26355..86db48ff66 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt >@@ -126,6 +126,9 @@ > if ( document.location.hash ) { > $( '#loginform' ).append( '<input name="auth_forwarded_hash" type="hidden" value="' + document.location.hash + '"/>' ); > } >+ >+ // Clear last borrowers, rememberd sql reports, carts, etc. >+ logOut(); > }); > </script> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js b/koha-tmpl/intranet-tmpl/prog/js/staff-global.js >index 70e0551b8f..770edba7db 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/staff-global.js >@@ -147,6 +147,7 @@ function logOut(){ > delBasket('main', true); > } > clearHoldFor(); >+ localStorage.removeItem("searches"); > } > > function openHelp(){ >-- >2.20.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 26562
:
110899
|
110908
|
110909
| 110910