Bugzilla – Attachment 166983 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: (QA follow-up) Improve update output
Bug-36819-QA-follow-up-Improve-update-output.patch (text/plain), 1.34 KB, created by
Martin Renvoize (ashimema)
on 2024-05-21 15:18:12 UTC
(
hide
)
Description:
Bug 36819: (QA follow-up) Improve update output
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-05-21 15:18:12 UTC
Size:
1.34 KB
patch
obsolete
>From 37987c27088f40b4387dc479589f459ed75d691f Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Tue, 21 May 2024 16:17:36 +0100 >Subject: [PATCH] Bug 36819: (QA follow-up) Improve update output > >--- > installer/data/mysql/atomicupdate/bug_36819.pl | 11 ++++++++--- > 1 file changed, 8 insertions(+), 3 deletions(-) > >diff --git a/installer/data/mysql/atomicupdate/bug_36819.pl b/installer/data/mysql/atomicupdate/bug_36819.pl >index f002bf6c7bb..00856dcee14 100755 >--- a/installer/data/mysql/atomicupdate/bug_36819.pl >+++ b/installer/data/mysql/atomicupdate/bug_36819.pl >@@ -8,9 +8,14 @@ return { > 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%"; >+ my $affected = $dbh->do(q{UPDATE creator_layouts SET scale_width = '0.800000' WHERE scale_width = '0.080000';}); > >+ if ($affected) { >+ say_warning( >+ $out, "Changed the barcode width in patron card creator default layout from 8% to 80%"; >+ ); >+ } else { >+ say_info( $out, "No patron card creator layouts found with 8% width, no changes required" ); >+ } > }, > }; >-- >2.45.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