Bugzilla – Attachment 168298 Details for
Bug 37216
Fix dbrev for EmailFieldSelection
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37216: (follow-up) Clear invalid value
Bug-37216-follow-up-Clear-invalid-value.patch (text/plain), 1.23 KB, created by
Emily Lamancusa (emlam)
on 2024-06-28 21:04:37 UTC
(
hide
)
Description:
Bug 37216: (follow-up) Clear invalid value
Filename:
MIME Type:
Creator:
Emily Lamancusa (emlam)
Created:
2024-06-28 21:04:37 UTC
Size:
1.23 KB
patch
obsolete
>From 3fb604341d11658ecb88bcee4f1f737b9d7ede36 Mon Sep 17 00:00:00 2001 >From: Emily Lamancusa <emily.lamancusa@montgomerycountymd.gov> >Date: Fri, 28 Jun 2024 17:02:50 -0400 >Subject: [PATCH] Bug 37216: (follow-up) Clear invalid value > >--- > installer/data/mysql/atomicupdate/bug_37216.pl | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > >diff --git a/installer/data/mysql/atomicupdate/bug_37216.pl b/installer/data/mysql/atomicupdate/bug_37216.pl >index e773122adf..115868b20d 100755 >--- a/installer/data/mysql/atomicupdate/bug_37216.pl >+++ b/installer/data/mysql/atomicupdate/bug_37216.pl >@@ -8,11 +8,16 @@ return { > my ($args) = @_; > my ( $dbh, $out ) = @$args{qw(dbh out)}; > >- # Do you stuffs here >+ # Fix options field on EmailFieldSelection > $dbh->do( > q{ UPDATE systempreferences SET options = 'email|emailpro|B_email' WHERE variable = 'EmailFieldSelection' } > ); > >+ # Clear invalid value from EmailFieldSelection >+ $dbh->do( >+ q{ UPDATE systempreferences SET value = '' WHERE variable = 'EmailFieldSelection' AND value='email|emailpro|B_email' } >+ ); >+ > say_success( $out, "Updated system preference 'EmailFieldSelection'" ); > }, > }; >-- >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 37216
:
168218
|
168230
|
168253
|
168254
|
168255
|
168256
| 168298