Bugzilla – Attachment 57150 Details for
Bug 17509
Notify patrons to return items requested on hold by another person
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17509: Fixed invalid patterns
Bug-17509-Fixed-invalid-patterns.patch (text/plain), 1.43 KB, created by
Radek Šiman (R-Bit Technology, s.r.o.)
on 2016-11-03 22:21:13 UTC
(
hide
)
Description:
Bug 17509: Fixed invalid patterns
Filename:
MIME Type:
Creator:
Radek Šiman (R-Bit Technology, s.r.o.)
Created:
2016-11-03 22:21:13 UTC
Size:
1.43 KB
patch
obsolete
>From d409d928e9824c97910278e86c4914fdc43c5a04 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Radek=20=C5=A0iman?= <rbit@rbit.cz> >Date: Thu, 3 Nov 2016 04:53:20 +0100 >Subject: [PATCH] Bug 17509: Fixed invalid patterns > >--- > C4/Reserves.pm | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) > >diff --git a/C4/Reserves.pm b/C4/Reserves.pm >index 91d77b4..6a2543c 100644 >--- a/C4/Reserves.pm >+++ b/C4/Reserves.pm >@@ -2624,19 +2624,19 @@ sub GetBorrowersToSatisfyHold { > > if ($library eq 'RequestorLibrary') { > $query .= " AND borrowers.branchcode = ?"; >- $sth = $dbh->prepare( $query ); >- $sth->execute( $hold->id(), $hold->borrower()->branchcode ); >+ $sth = $dbh->prepare( $query ); >+ $sth->execute( $hold->id(), $hold->borrower()->branchcode ); > } > elsif ($library eq 'ItemHomeLibrary') { > $query .= " AND items.homebranch = ?"; >- $sth = $dbh->prepare( $query ); >- $sth->execute( $hold->id(), $hold->borrower()->branchcode ); >+ $sth = $dbh->prepare( $query ); >+ $sth->execute( $hold->id(), $hold->borrower()->branchcode ); > } > else { >- $sth = $dbh->prepare( $query ); >- $sth->execute( $hold->id() ); >+ $sth = $dbh->prepare( $query ); >+ $sth->execute( $hold->id() ); > } >- >+ > my @results = (); > while ( my $data = $sth->fetchrow_hashref ) { > my $borrower = C4::Members::GetMember(borrowernumber => $data->{borrowernumber}); >-- >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 17509
:
57143
|
57144
|
57145
|
57146
|
57147
|
57148
|
57149
|
57150
|
57157
|
57159
|
57160
|
57161
|
57162
|
57163
|
57164
|
57165
|
63258
|
63269
|
63270
|
63271
|
63272
|
63273
|
63274
|
63275
|
63276
|
63277
|
67982
|
80452
|
80453
|
80454
|
80455
|
80456
|
80457
|
80458
|
80459
|
80460
|
80461
|
86365
|
86366
|
86367
|
86368
|
86369