[freeside-commits] branch FREESIDE_2_3_BRANCH updated. 970b97a1792729bc4a565cf0504c0d288ae89349
Ivan
ivan at 420.am
Wed Aug 15 13:57:34 PDT 2012
The branch, FREESIDE_2_3_BRANCH has been updated
via 970b97a1792729bc4a565cf0504c0d288ae89349 (commit)
from be39d08797f291b720c7ca044f2be7a1a08eb466 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 970b97a1792729bc4a565cf0504c0d288ae89349
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed Aug 15 13:57:33 2012 -0700
add an explicit compile-time dependancy on OLE::Storage_Lite, for large spreadsheets, rather than popping up an error when you try to generate/download one, RT#18932
diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm
index 334614b..9d9ab14 100644
--- a/FS/FS/ClientAPI/MyAccount.pm
+++ b/FS/FS/ClientAPI/MyAccount.pm
@@ -14,6 +14,7 @@ use Business::CreditCard;
use HTML::Entities;
use Text::CSV_XS;
use Spreadsheet::WriteExcel;
+use OLE::Storage_Lite;
use FS::UI::Web::small_custview qw(small_custview); #less doh
use FS::UI::Web;
use FS::UI::bytecount qw( display_bytecount );
diff --git a/FS/FS/Mason.pm b/FS/FS/Mason.pm
index 7d81fb6..78a4b47 100644
--- a/FS/FS/Mason.pm
+++ b/FS/FS/Mason.pm
@@ -91,6 +91,7 @@ if ( -e $addl_handler_use_file ) {
use Text::CSV_XS;
use Spreadsheet::WriteExcel;
use Spreadsheet::WriteExcel::Utility;
+ use OLE::Storage_Lite;
use Excel::Writer::XLSX;
use Excel::Writer::XLSX::Utility;
@@ -350,7 +351,7 @@ if ( -e $addl_handler_use_file ) {
use RT::Interface::Web::Request;
- #nother undeclared web UI dep (for ticket links graph)
+ #another undeclared web UI dep (for ticket links graph)
use IPC::Run::SafeHandles;
#slow, unreliable, segfaults and is optional
diff --git a/rt/share/html/Search/Results.xls b/rt/share/html/Search/Results.xls
index 52a05da..8b94e22 100644
--- a/rt/share/html/Search/Results.xls
+++ b/rt/share/html/Search/Results.xls
@@ -54,6 +54,7 @@ $Format => undef
<%INIT>
use Spreadsheet::WriteExcel;
+use OLE::Storage_Lite;
use List::Util qw( max );
use Date::Format qw( time2str );
-----------------------------------------------------------------------
Summary of changes:
FS/FS/ClientAPI/MyAccount.pm | 1 +
FS/FS/Mason.pm | 3 ++-
rt/share/html/Search/Results.xls | 1 +
3 files changed, 4 insertions(+), 1 deletions(-)
More information about the freeside-commits
mailing list