Bugzilla – Attachment 44502 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]
Bug 15138: Fix typo timestamap
Bug-15138-Fix-typo-timestamap.patch (text/plain), 1.25 KB, created by
Marc Véron
on 2015-11-05 12:36:50 UTC
(
hide
)
Description:
Bug 15138: Fix typo timestamap
Filename:
MIME Type:
Creator:
Marc Véron
Created:
2015-11-05 12:36:50 UTC
Size:
1.25 KB
patch
obsolete
>From dcd00d09a32830522831fd5a718573c97b088ffb 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] 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> >--- > reports/borrowers_out.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >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.10.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 15138
:
44489
|
44502
|
44581