Bug 12844: Remove the C4::Output::FormatNumber subroutine
authorJonathan Druart <jonathan.druart@biblibre.com>
Thu, 28 Aug 2014 14:20:18 +0000 (16:20 +0200)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Mon, 27 Oct 2014 15:56:19 +0000 (12:56 -0300)
This subroutine is now useless.

Test plan:
  git grep FormatNumber
should not return any result in pl and pm files.

Signed-off-by: Paola Rossi <paola.rossi@cineca.it>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>

C4/Output.pm

index 324cf69..d09bba7 100644 (file)
@@ -53,7 +53,7 @@ BEGIN {
         setlanguagecookie getlanguagecookie pagination_bar parametrized_url
     );
     push @EXPORT, qw(
-        &output_html_with_http_headers &output_ajax_with_http_headers &output_with_http_headers FormatData FormatNumber
+        &output_html_with_http_headers &output_ajax_with_http_headers &output_with_http_headers FormatData
     );
 
 }
@@ -67,32 +67,6 @@ C4::Output - Functions for managing output, is slowly being deprecated
 =over 2
 =cut
 
-=item FormatNumber
-=cut
-sub FormatNumber{
-my $cur  =  GetCurrency;
-my $cur_format = C4::Context->preference("CurrencyFormat");
-my $num;
-
-if ( $cur_format eq 'FR' ) {
-    $num = new Number::Format(
-        'decimal_fill'      => '2',
-        'decimal_point'     => ',',
-        'int_curr_symbol'   => $cur->{symbol},
-        'mon_thousands_sep' => ' ',
-        'thousands_sep'     => ' ',
-        'mon_decimal_point' => ','
-    );
-} else {  # US by default..
-    $num = new Number::Format(
-        'int_curr_symbol'   => '',
-        'mon_thousands_sep' => ',',
-        'mon_decimal_point' => '.'
-    );
-}
-return $num;
-}
-
 =item FormatData
 
 FormatData($data_hashref)