Bugzilla – Attachment 161556 Details for
Bug 14180
Make "Always show checkouts immediately" a global setting
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14180: Perltidy
Bug-14180-Perltidy.patch (text/plain), 2.19 KB, created by
ByWater Sandboxes
on 2024-01-26 18:23:30 UTC
(
hide
)
Description:
Bug 14180: Perltidy
Filename:
MIME Type:
Creator:
ByWater Sandboxes
Created:
2024-01-26 18:23:30 UTC
Size:
2.19 KB
patch
obsolete
>From 57f6f1d2de53e732d406d5e6dcea434c4ff43c83 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Fri, 26 Jan 2024 17:36:39 +0000 >Subject: [PATCH] Bug 14180: Perltidy > >To test: >1. APPLY PATCH, updatedatebase, restart_all >2. Search for the system preference 'AlwaysLoadCheckoutsTable' and set it to 'Do'. >3. Go to 'circ/circulation.pl?borrowernumber=X' for a patron with checkouts. ( Check out tab ). >4. The table should load right away. >5. Go to 'members/moremember.pl?borrowernumber=X' for a patron with checkouts. ( Details tab ). >6. The table should load right way. >7. Set a value in the 'LoadCheckoutsTableDelay' system preference. >8. Back on 'circ/circulation.pl?borrowernumber=X', make sure the delay is honored. You should see a message like "Checkouts table will automatically load in X seconds". >9. The delay should NOT be honored on'members/moremember.pl?borrowernumber=X', that table should load right away/ >10. Turn off 'AlwaysLoadCheckoutsTable' and make sure the table does not load, or loads according to the cookie set when checking the 'Always show checkouts automatically' checkbox. > >Signed-off-by: Kelly <kelly@bywatersolutions.com> >--- > installer/data/mysql/atomicupdate/bug_14180.pl | 13 ++++++++----- > 1 file changed, 8 insertions(+), 5 deletions(-) > >diff --git a/installer/data/mysql/atomicupdate/bug_14180.pl b/installer/data/mysql/atomicupdate/bug_14180.pl >index 3c30995d57..dffa605038 100755 >--- a/installer/data/mysql/atomicupdate/bug_14180.pl >+++ b/installer/data/mysql/atomicupdate/bug_14180.pl >@@ -1,15 +1,18 @@ > use Modern::Perl; > > return { >- bug_number => "14180", >+ bug_number => "14180", > description => "Add system preference AlwaysLoadCheckoutsTable", >- up => sub { >+ up => sub { > my ($args) = @_; >- my ($dbh, $out) = @$args{qw(dbh out)}; >+ my ( $dbh, $out ) = @$args{qw(dbh out)}; >+ > # Do you stuffs here >- $dbh->do(q{ >+ $dbh->do( >+ q{ > INSERT IGNORE INTO systempreferences (`variable`,`value`,`options`,`explanation`,`type`) > VALUES ('AlwaysLoadCheckoutsTable','0','','Option to always load the checkout table','YesNo') >- }); >+ } >+ ); > }, > }; >-- >2.30.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 14180
:
161548
|
161549
|
161550
|
161551
|
161554
|
161555
|
161556
|
170095
|
170096
|
170097
|
170098
|
173382
|
173383
|
173384