@@ -, +, @@ removed git grep FormatData --- C4/Output.pm | 14 -------------- 1 file changed, 14 deletions(-) --- a/C4/Output.pm +++ a/C4/Output.pm @@ -93,20 +93,6 @@ if ( $cur_format eq 'FR' ) { return $num; } -=item FormatData - -FormatData($data_hashref) -C<$data_hashref> is a ref to data to format - -Format dates of data those dates are assumed to contain date in their noun -Could be used in order to centralize all the formatting for HTML output -=cut - -sub FormatData{ - my $data_hashref=shift; - $$data_hashref{$_} = format_date( $$data_hashref{$_} ) for grep{/date/} keys (%$data_hashref); -} - =item pagination_bar pagination_bar($base_url, $nb_pages, $current_page, $startfrom_name) --