Bugzilla – Attachment 138764 Details for
Bug 30992
Hard to translate single word strings
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30992: (follow-up) Fix semicolon at line ending
Bug-30992-follow-up-Fix-semicolon-at-line-ending.patch (text/plain), 1.10 KB, created by
Katrin Fischer
on 2022-08-07 22:12:41 UTC
(
hide
)
Description:
Bug 30992: (follow-up) Fix semicolon at line ending
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2022-08-07 22:12:41 UTC
Size:
1.10 KB
patch
obsolete
>From 1e5de5acb825d7f6fd5b68d8b75428b84c13face Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Sun, 7 Aug 2022 22:11:03 +0000 >Subject: [PATCH] Bug 30992: (follow-up) Fix semicolon at line ending > >$itemLoopIter->{reservedate} = $first_hold->reservedate, >$itemLoopIter->{ExpectedAtLibrary} = $first_hold->branchcode; > >1st line ends with a comma instead of a semicolon. >--- > opac/opac-reserve.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl >index e5c2753d6c..8baba64243 100755 >--- a/opac/opac-reserve.pl >+++ b/opac/opac-reserve.pl >@@ -515,7 +515,7 @@ foreach my $biblioNum (@biblionumbers) { > > if ( my $first_hold = $holds->next ) { > $itemLoopIter->{backgroundcolor} = 'reserved'; >- $itemLoopIter->{reservedate} = $first_hold->reservedate, >+ $itemLoopIter->{reservedate} = $first_hold->reservedate; > $itemLoopIter->{ExpectedAtLibrary} = $first_hold->branchcode; > $itemLoopIter->{waitingdate} = $first_hold->waitingdate; > } >-- >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 30992
:
137664
|
137665
|
137666
|
137667
|
137855
|
138393
|
138394
|
138661
|
138662
| 138764