Bugzilla – Attachment 44581 Details for
Bug 15138
typo in reports/borrowers_out.pl - issues.timestamap
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 15138: Fix typo timestamap
PASSED-QA-Bug-15138-Fix-typo-timestamap.patch (text/plain), 1.32 KB, created by
Kyle M Hall (khall)
on 2015-11-06 15:42:31 UTC
(
hide
)
Description:
[PASSED QA] Bug 15138: Fix typo timestamap
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2015-11-06 15:42:31 UTC
Size:
1.32 KB
patch
obsolete
>From 613ff2b76caf9bfbb2137c9b031e31dbf450d22e Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 5 Nov 2015 11:32:47 +0000 >Subject: [PATCH] [PASSED QA] Bug 15138: Fix typo timestamap >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Introduced by bug 14426, should be backported to all supported stable >version (3.14, 3.16, 3.18 and 3.20). > >Test plan: >got on Home ⺠Reports ⺠Patrons with no checkouts >Fill the Not checked out since, >you will never get any result, a sql error is in the log > Unknown column 'issues.timestamap' in 'where clause' > >Signed-off-by: Marc Véron <veron@veron.ch> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > reports/borrowers_out.pl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/reports/borrowers_out.pl b/reports/borrowers_out.pl >index 55f29ef..c4b7c6a 100755 >--- a/reports/borrowers_out.pl >+++ b/reports/borrowers_out.pl >@@ -230,7 +230,7 @@ sub calculate { > } > $strcalc .= " AND NOT EXISTS (SELECT * FROM issues WHERE issues.borrowernumber=borrowers.borrowernumber "; > if ( @$filters[1] ) { >- $strcalc .= " AND issues.timestamap > ?"; >+ $strcalc .= " AND issues.timestamp > ?"; > push @query_args, @$filters[1]; > } > $strcalc .= ") "; >-- >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 15138
:
44489
|
44502
| 44581