Bugzilla – Attachment 172540 Details for
Bug 23295
Automatically debar patrons if SMS or email notice fail
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23295: (QA follow-up) Fix up qa script issues
Bug-23295-QA-follow-up-Fix-up-qa-script-issues.patch (text/plain), 1.65 KB, created by
Kyle M Hall (khall)
on 2024-10-08 16:44:05 UTC
(
hide
)
Description:
Bug 23295: (QA follow-up) Fix up qa script issues
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2024-10-08 16:44:05 UTC
Size:
1.65 KB
patch
obsolete
>From d1395336604c6e76c91d079efcadda5dc9edbc43 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Tue, 8 Oct 2024 16:42:15 +0000 >Subject: [PATCH] Bug 23295: (QA follow-up) Fix up qa script issues > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > .../atomicupdate/bug_23295-add_system_restriction_types.pl | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > mode change 100644 => 100755 installer/data/mysql/atomicupdate/bug_23295-add_system_restriction_types.pl > >diff --git a/installer/data/mysql/atomicupdate/bug_23295-add_system_restriction_types.pl b/installer/data/mysql/atomicupdate/bug_23295-add_system_restriction_types.pl >old mode 100644 >new mode 100755 >index 617b402eb1b..fe27c245234 >--- a/installer/data/mysql/atomicupdate/bug_23295-add_system_restriction_types.pl >+++ b/installer/data/mysql/atomicupdate/bug_23295-add_system_restriction_types.pl >@@ -8,10 +8,11 @@ return { > my ($args) = @_; > my ( $dbh, $out ) = @$args{qw(dbh out)}; > try { >- $dbh->do(q{INSERT IGNORE INTO restriction_types (code, display_text, is_system, is_default) VALUES ('NOTICE_FAILURE_SUSPENSION', 'Notice failure suspension', 1, 0)}); >+ $dbh->do( >+ q{INSERT IGNORE INTO restriction_types (code, display_text, is_system, is_default) VALUES ('NOTICE_FAILURE_SUSPENSION', 'Notice failure suspension', 1, 0)} >+ ); > say_success( $out, "Added a new system restriction_types 'NOTICE_FAILURE_SUSPENSION'" ); >- } >- catch { >+ } catch { > say_failure( $out, "Database modification failed with errors: $_" ); > }; > }, >-- >2.39.5 (Apple Git-154)
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 23295
:
91471
|
102068
|
102098
|
105003
|
116181
|
158687
|
160785
|
160890
|
167599
|
167778
|
172507
|
172538
|
172539
| 172540