Bugzilla – Attachment 34569 Details for
Bug 11814
Serial statuses should be stored in constants
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 11814: Fix sql parameters order
PASSED-QA-Bug-11814-Fix-sql-parameters-order.patch (text/plain), 918 bytes, created by
Kyle M Hall (khall)
on 2014-12-19 15:24:49 UTC
(
hide
)
Description:
[PASSED QA] Bug 11814: Fix sql parameters order
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2014-12-19 15:24:49 UTC
Size:
918 bytes
patch
obsolete
>From 246bae916ed03e94593763b6b9941e9b7f77980b Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Tue, 25 Nov 2014 10:01:05 +0100 >Subject: [PATCH] [PASSED QA] Bug 11814: Fix sql parameters order > >Oops, bad paramaters passed on executing the sql query produced >unexpected behaviors. > >Signed-off-by: Paola Rossi <paola.rossi@cineca.it> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > C4/Serials.pm | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/C4/Serials.pm b/C4/Serials.pm >index 8b54af3..6542d7e 100644 >--- a/C4/Serials.pm >+++ b/C4/Serials.pm >@@ -340,7 +340,7 @@ sub UpdateClaimdateIssues { > WHERE serialid in (" . join( ",", map { '?' } @$serialids ) . ") > "; > my $rq = $dbh->prepare($query); >- $rq->execute($date, @$serialids, CLAIMED); >+ $rq->execute($date, CLAIMED, @$serialids); > return $rq->rows; > } > >-- >1.7.2.5
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 11814
:
25541
|
25542
|
27605
|
33512
|
33513
|
33514
|
33552
|
33890
|
33990
|
33991
|
33992
|
34550
|
34563
|
34564
|
34565
|
34566
|
34567
|
34568
| 34569 |
34570