Bugzilla – Attachment 3592 Details for
Bug 6028
Fixing the 9999 rows limiation on export to csv
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed Patch
0001-Bug-6028-MT3815-Quickfix-for-CSV-export-9999-rows-li.patch (text/plain), 858 bytes, created by
Chris Cormack
on 2011-03-31 21:29:49 UTC
(
hide
)
Description:
Proposed Patch
Filename:
MIME Type:
Creator:
Chris Cormack
Created:
2011-03-31 21:29:49 UTC
Size:
858 bytes
patch
obsolete
>From f658f1c7cc1985c68edaa8a5d6842d660de7f835 Mon Sep 17 00:00:00 2001 >From: Matthias Meusburger <matthias.meusburger@biblibre.com> >Date: Thu, 17 Jun 2010 14:42:03 +0200 >Subject: [PATCH] Bug 6028 : MT3815: Quickfix for CSV export (9999 rows limitation) > >--- > 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 7231457..0da7c13 100644 >--- a/C4/Reports/Guided.pm >+++ b/C4/Reports/Guided.pm >@@ -432,7 +432,7 @@ sub execute_query ($;$$$) { > return; > } > $offset = 0 unless $offset; >- $limit = 9999 unless $limit; >+ $limit = 999999 unless $limit; > $debug and print STDERR "execute_query($sql, $offset, $limit)\n"; > if ($sql =~ /;?\W?(UPDATE|DELETE|DROP|INSERT|SHOW|CREATE)\W/i) { > return (undef, { sqlerr => $1} ); >-- >1.7.1 >
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 6028
: 3592