[freeside-commits] branch FREESIDE_2_3_BRANCH updated. f23f61c98576a960011056cfb827424791af3b40
Ivan
ivan at 420.am
Tue Dec 4 09:21:22 PST 2012
The branch, FREESIDE_2_3_BRANCH has been updated
via f23f61c98576a960011056cfb827424791af3b40 (commit)
from defe558a286bbf46375c903c0aaef706b3071798 (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 f23f61c98576a960011056cfb827424791af3b40
Author: Ivan Kohler <ivan at freeside.biz>
Date: Tue Dec 4 09:21:21 2012 -0800
add IO::String as a proper web interface dep, RT#19732
diff --git a/FS/FS/Mason.pm b/FS/FS/Mason.pm
index 5bd047d..724b85b 100644
--- a/FS/FS/Mason.pm
+++ b/FS/FS/Mason.pm
@@ -83,6 +83,7 @@ if ( -e $addl_handler_use_file ) {
use IO::Handle;
use IO::File;
use IO::Scalar;
+ use IO::String;
#not actually using this yet anyway...# use IPC::Run3 0.036;
use Net::Whois::Raw qw(whois);
if ( $] < 5.006 ) {
diff --git a/httemplate/search/customer_accounting_summary.html b/httemplate/search/customer_accounting_summary.html
index 5575283..e01b8cd 100644
--- a/httemplate/search/customer_accounting_summary.html
+++ b/httemplate/search/customer_accounting_summary.html
@@ -9,8 +9,7 @@
http_header('Content-Disposition' => qq!attachment;filename="$filename"!);
my $output = '';
- use IO::String;
- my $XLS = IO::String->new($output);;
+ my $XLS = IO::String->new($output);
my $workbook = $format->{class}->new($XLS)
or die "Error opening .xls file: $!";
-----------------------------------------------------------------------
Summary of changes:
FS/FS/Mason.pm | 1 +
httemplate/search/customer_accounting_summary.html | 3 +--
2 files changed, 2 insertions(+), 2 deletions(-)
More information about the freeside-commits
mailing list