Bugzilla – Attachment 171951 Details for
Bug 37967
Allow auto renewals notices to be sent via phone
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37967: (QA follow-up) Add bug number/description and perltidy atomicupdate
Bug-37967-QA-follow-up-Add-bug-numberdescription-a.patch (text/plain), 1.69 KB, created by
Lucas Gass (lukeg)
on 2024-09-24 19:34:23 UTC
(
hide
)
Description:
Bug 37967: (QA follow-up) Add bug number/description and perltidy atomicupdate
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2024-09-24 19:34:23 UTC
Size:
1.69 KB
patch
obsolete
>From af0979e70ed6582cc721e84fee1a7c76a125c8db Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Tue, 24 Sep 2024 19:33:44 +0000 >Subject: [PATCH] Bug 37967: (QA follow-up) Add bug number/description and > perltidy atomicupdate > >Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> >--- > installer/data/mysql/atomicupdate/bug_37967.pl | 10 ++++++---- > 1 file changed, 6 insertions(+), 4 deletions(-) > >diff --git a/installer/data/mysql/atomicupdate/bug_37967.pl b/installer/data/mysql/atomicupdate/bug_37967.pl >index 9e08f9bcc76..e8494b948d9 100755 >--- a/installer/data/mysql/atomicupdate/bug_37967.pl >+++ b/installer/data/mysql/atomicupdate/bug_37967.pl >@@ -2,18 +2,20 @@ use Modern::Perl; > use Koha::Installer::Output qw(say_warning say_failure say_success say_info); > > return { >- bug_number => "BUG_NUMBER", >- description => "A single line description", >+ bug_number => "37967", >+ description => "Add auto renewal message_transport for phone", > up => sub { > my ($args) = @_; > my ( $dbh, $out ) = @$args{qw(dbh out)}; > > try { >- $dbh->do(q{ >+ $dbh->do( >+ q{ > INSERT IGNORE INTO message_transports (`message_attribute_id`, `message_transport_type`, `is_digest`, `letter_module`, `letter_code`) VALUES > (9, 'phone', 1, 'circulation', 'AUTO_RENEWALS_DGST'), > (9, 'phone', 0, 'circulation', 'AUTO_RENEWALS'); >- }); >+ } >+ ); > say_success( $out, "Added phone messaging transports for auto-renewals" ); > } catch { > say_failure( $out, "Error adding phone messaging transports for auto-renewals: $_" ); >-- >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 37967
:
171791
|
171792
|
171808
|
171950
| 171951