From d7e8c0ce58cad68b3758ca04d283aec64e2dc281 Mon Sep 17 00:00:00 2001 From: Alexander Lutay Date: Fri, 17 May 2013 19:55:23 +0300 Subject: [PATCH 1/2] [*] update the copyright date --- lib/admin/Controller/sipanalysis.pm | 2 +- root/layout/footer | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/admin/Controller/sipanalysis.pm b/lib/admin/Controller/sipanalysis.pm index ec6700c..25840f0 100644 --- a/lib/admin/Controller/sipanalysis.pm +++ b/lib/admin/Controller/sipanalysis.pm @@ -207,7 +207,7 @@ Provisioning model, Catalyst =head1 COPYRIGHT -The subscriber controller is Copyright (c) 2007-2012 Sipwise GmbH, +The subscriber controller is Copyright (c) 2007-2013 Sipwise GmbH, Austria. You should have received a copy of the licences terms together with the software. diff --git a/root/layout/footer b/root/layout/footer index c3675f1..4793836 100644 --- a/root/layout/footer +++ b/root/layout/footer @@ -2,7 +2,7 @@ From 3af5b4d976ec953740f3ff373b67c5047da3c8d9 Mon Sep 17 00:00:00 2001 From: Andrew Pogrebennyk Date: Tue, 11 Jun 2013 13:35:24 +0200 Subject: [PATCH 2/2] reflect renaming to source_customer_cost in 2.8 (mantis:3237) --- lib/admin/Utils.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/admin/Utils.pm b/lib/admin/Utils.pm index e8c8699..0988405 100644 --- a/lib/admin/Utils.pm +++ b/lib/admin/Utils.pm @@ -168,9 +168,9 @@ sub prepare_call_list { $callentry{duration} = '00:00'; } - if(defined $$call{customer_cost}) { + if(defined $$call{source_customer_cost}) { # money is allways returned as cents - $callentry{call_fee} = sprintf $$bilprof{data}{currency} . " %.04f", $$call{customer_cost}/100; + $callentry{call_fee} = sprintf $$bilprof{data}{currency} . " %.04f", $$call{source_customer_cost}/100; } else { $callentry{call_fee} = ''; }