Bugzilla – Attachment 166974 Details for
Bug 36819
Default layout data prints squished barcodes
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36819: (follow-up) Updatedatabase to correct wrong value
Bug-36819-follow-up-Updatedatabase-to-correct-wron.patch (text/plain), 1.37 KB, created by
Caroline Cyr La Rose
on 2024-05-21 13:40:38 UTC
(
hide
)
Description:
Bug 36819: (follow-up) Updatedatabase to correct wrong value
Filename:
MIME Type:
Creator:
Caroline Cyr La Rose
Created:
2024-05-21 13:40:38 UTC
Size:
1.37 KB
patch
obsolete
>From 99c58641db6e7158324ce20a118de0b97e51ef8b Mon Sep 17 00:00:00 2001 >From: Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> >Date: Tue, 21 May 2024 09:37:38 -0400 >Subject: [PATCH] Bug 36819: (follow-up) Updatedatabase to correct wrong value > >This patch adds an update to correct the value of scale_width to >0.800000 IF it is 0.080000. It should not change the value if it >is anything else than 0.080000. >--- > installer/data/mysql/atomicupdate/bug_36819.pl | 16 ++++++++++++++++ > 1 file changed, 16 insertions(+) > create mode 100755 installer/data/mysql/atomicupdate/bug_36819.pl > >diff --git a/installer/data/mysql/atomicupdate/bug_36819.pl b/installer/data/mysql/atomicupdate/bug_36819.pl >new file mode 100755 >index 0000000000..f002bf6c7b >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_36819.pl >@@ -0,0 +1,16 @@ >+use Modern::Perl; >+use Koha::Installer::Output qw(say_warning say_failure say_success say_info); >+ >+return { >+ bug_number => "36819", >+ description => "Change barcode width value if it still has the wrong default value", >+ up => sub { >+ my ($args) = @_; >+ my ( $dbh, $out ) = @$args{qw(dbh out)}; >+ >+ $dbh->do(q{UPDATE creator_layouts SET scale_width = '0.800000' WHERE scale_width = '0.080000';}); >+ >+ say $out "Changed the barcode width in patron card creator default layout to 80% if it was 8%"; >+ >+ }, >+}; >-- >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 36819
:
166443
|
166667
|
166734
|
166735
|
166974
|
166982
|
166983