Bugzilla – Attachment 2349 Details for
Bug 3419
Downloaded saved reports do not contain all records
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Followup patch to bug 3419
0001-Bugfix-3419-fixes-typo-in-inequality.patch (text/plain), 911 bytes, created by
Ian Walls
on 2010-07-12 18:28:39 UTC
(
hide
)
Description:
Followup patch to bug 3419
Filename:
MIME Type:
Creator:
Ian Walls
Created:
2010-07-12 18:28:39 UTC
Size:
911 bytes
patch
obsolete
>From ec5c40e8e00f5d2d449d3c9cd88e00da3ca466ba Mon Sep 17 00:00:00 2001 >From: Ian Walls <ian.walls@bywatersolutions.com> >Date: Mon, 12 Jul 2010 14:19:54 -0400 >Subject: [PATCH] Bugfix 3419: fixes typo in inequality. > This allows for reports larger than 9999 rows to be downloaded fully to file >Content-Type: text/plain; charset="utf-8" > >--- > C4/Reports/Guided.pm | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/C4/Reports/Guided.pm b/C4/Reports/Guided.pm >index 5cdad46..51e608b 100644 >--- a/C4/Reports/Guided.pm >+++ b/C4/Reports/Guided.pm >@@ -460,7 +460,7 @@ sub execute_query ($;$$$) { > if (defined($userlimit)) { > if ($offset + $limit > $userlimit ) { > $limit = $userlimit - $offset; >- } elsif ( ! $offset && $limit > $userlimit ) { >+ } elsif ( ! $offset && $limit < $userlimit ) { > $limit = $userlimit; > } > } >-- >1.5.6.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 3419
: 2349