Bugzilla – Attachment 157808 Details for
Bug 34889
Convert PatronSelfRegistrationAdditionalInstructions system preference to HTML customization
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34889: (follow-up) Revise database update following Bug 31383
Bug-34889-follow-up-Revise-database-update-followi.patch (text/plain), 2.45 KB, created by
Owen Leonard
on 2023-10-25 15:04:50 UTC
(
hide
)
Description:
Bug 34889: (follow-up) Revise database update following Bug 31383
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2023-10-25 15:04:50 UTC
Size:
2.45 KB
patch
obsolete
>From 04314ec827b4a6f5f0fb7b8b8b8007ccabdb3b40 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Wed, 25 Oct 2023 14:53:25 +0000 >Subject: [PATCH] Bug 34889: (follow-up) Revise database update following Bug > 31383 > >--- > ...AdditionalInstructions-to-additional-contents.pl | 13 +++++++++++-- > 1 file changed, 11 insertions(+), 2 deletions(-) > >diff --git a/installer/data/mysql/atomicupdate/bug-34889-move-PatronSelfRegistrationAdditionalInstructions-to-additional-contents.pl b/installer/data/mysql/atomicupdate/bug-34889-move-PatronSelfRegistrationAdditionalInstructions-to-additional-contents.pl >index 442092df37..e4b68490c0 100755 >--- a/installer/data/mysql/atomicupdate/bug-34889-move-PatronSelfRegistrationAdditionalInstructions-to-additional-contents.pl >+++ b/installer/data/mysql/atomicupdate/bug-34889-move-PatronSelfRegistrationAdditionalInstructions-to-additional-contents.pl >@@ -18,8 +18,17 @@ return { > # Insert any values found from system preference into additional_contents > foreach my $lang ('default') { > $dbh->do( >- "INSERT INTO additional_contents ( category, code, location, branchcode, title, content, lang, published_on ) VALUES ('html_customizations', 'PatronSelfRegistrationAdditionalInstructions', 'PatronSelfRegistrationAdditionalInstructions', NULL, ?, ?, ?, CAST(NOW() AS date) )", >- undef, "PatronSelfRegistrationAdditionalInstructions $lang", >+ "INSERT INTO additional_contents ( category, code, location, branchcode, published_on ) VALUES ('html_customizations', 'PatronSelfRegistrationAdditionalInstructions', 'PatronSelfRegistrationAdditionalInstructions', NULL, CAST(NOW() AS date) )" >+ ); >+ >+ my ($insert_id) = $dbh->selectrow_array( >+ "SELECT id FROM additional_contents WHERE category = 'html_customizations' AND code = 'PatronSelfRegistrationAdditionalInstructions' AND location = 'PatronSelfRegistrationAdditionalInstructions' LIMIT 1", >+ {} >+ ); >+ >+ $dbh->do( >+ "INSERT INTO additional_contents_localizations ( additional_content_id, title, content, lang ) VALUES ( ?, ?, ?, ? )", >+ undef, $insert_id, "PatronSelfRegistrationAdditionalInstructions $lang", > $patronselfregistrationadditionalinstructions, $lang > ); > } >-- >2.30.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 34889
:
156111
|
156136
|
156680
|
157563
|
157808
|
157809
|
157826
|
157827
|
157828
|
157910
|
157911
|
157912
|
158447
|
158448
|
158449