Bugzilla – Attachment 123580 Details for
Bug 28824
Errant variable declaration in C4::Letters
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28824: Fix for variable declaration scope
Bug-28824-Fix-for-variable-declaration-scope.patch (text/plain), 724 bytes, created by
Martin Renvoize (ashimema)
on 2021-08-06 14:08:51 UTC
(
hide
)
Description:
Bug 28824: Fix for variable declaration scope
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2021-08-06 14:08:51 UTC
Size:
724 bytes
patch
obsolete
>From cd390bec4743a69086db1f8e74f0c0c513ad0f13 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Fri, 6 Aug 2021 14:51:48 +0100 >Subject: [PATCH] Bug 28824: Fix for variable declaration scope > >--- > C4/Letters.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/Letters.pm b/C4/Letters.pm >index 177a4f51f6..aa157be99e 100644 >--- a/C4/Letters.pm >+++ b/C4/Letters.pm >@@ -410,7 +410,7 @@ sub SendAlerts { > } > > if ( $type eq 'orderacquisition') { >- my $basketno = $externalid; >+ $basketno = $externalid; > $strsth = qq{ > SELECT aqorders.*,aqbasket.*,biblio.*,biblioitems.* > FROM aqorders >-- >2.20.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 28824
:
123579
| 123580