summaryrefslogtreecommitdiff
path: root/FS/FS
diff options
context:
space:
mode:
authorlevinse <levinse>2011-02-04 08:23:46 +0000
committerlevinse <levinse>2011-02-04 08:23:46 +0000
commita01d29e1bfa007399711c58a0c9655dca28956d9 (patch)
treeda0ee550f1410d485fddeacf41e2b91533d263d8 /FS/FS
parent32e465c98f956857e6aa51b5639e6db89539fbb5 (diff)
torrus SS first pass, RT10574
Diffstat (limited to 'FS/FS')
-rw-r--r--FS/FS/ClientAPI/MyAccount.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm
index be1146e47..33143e290 100644
--- a/FS/FS/ClientAPI/MyAccount.pm
+++ b/FS/FS/ClientAPI/MyAccount.pm
@@ -1149,7 +1149,8 @@ sub port_graph {
sub _port_graph {
my($svc_port, $begin, $end) = @_;
my @usage = ();
- push @usage, 999;
+ my $pngOrError = $svc_port->graph_png( start=>$begin, end=> $end );
+ push @usage, { 'png' => $pngOrError };
(@usage);
}