Bugzilla – Attachment 53033 Details for
Bug 15128
Add ability to limit the number of open purchase suggestions a patron can make
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 15128 - (QA Followup) Fix use of 'my' variable causing loss of data
Bug-15128---QA-Followup-Fix-use-of-my-variable-cau.patch (text/plain), 936 bytes, created by
Nick Clemens (kidclamp)
on 2016-07-01 15:41:13 UTC
(
hide
)
Description:
Bug 15128 - (QA Followup) Fix use of 'my' variable causing loss of data
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2016-07-01 15:41:13 UTC
Size:
936 bytes
patch
obsolete
>From 5aa34bf8b88c3a2f6fa6d67dcc8f37c9e9342657 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Fri, 1 Jul 2016 11:36:02 -0400 >Subject: [PATCH] Bug 15128 - (QA Followup) Fix use of 'my' variable causing > loss of data > >--- > opac/opac-suggestions.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/opac/opac-suggestions.pl b/opac/opac-suggestions.pl >index 26bc4f8..4691d0e 100755 >--- a/opac/opac-suggestions.pl >+++ b/opac/opac-suggestions.pl >@@ -114,7 +114,7 @@ if ( $op eq 'else' ) { > > my $patrons_pending_suggestions_count = 0; > if ( $borrowernumber ) { >- my $patrons_pending_suggestions_count = scalar @{ SearchSuggestion( { suggestedby => $borrowernumber, STATUS => 'ASKED' } ) } ; >+ $patrons_pending_suggestions_count = scalar @{ SearchSuggestion( { suggestedby => $borrowernumber, STATUS => 'ASKED' } ) } ; > } > > my $suggestions_loop = &SearchSuggestion($suggestion); >-- >2.1.4
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 15128
:
52452
|
52502
|
52596
|
52610
|
52611
|
52623
|
52624
|
52625
|
52626
|
52715
|
52716
|
52717
|
52718
|
52719
|
52720
|
52721
|
52722
|
52997
|
53033
|
53034
|
53037
|
53038
|
53039
|
53040
|
53041
|
53042
|
53043
|
53044
|
53045