View | Details | Raw Unified | Return to bug 14817
Collapse All | Expand All

(-)a/C4/Reports/Guided.pm (-2 / +1 lines)
Lines 884-890 sub _get_column_defs { Link Here
884
    my ($theme, $lang, $availablethemes) = C4::Templates::themelanguage($htdocs, 'about.tt', $section, $cgi);
884
    my ($theme, $lang, $availablethemes) = C4::Templates::themelanguage($htdocs, 'about.tt', $section, $cgi);
885
885
886
    my $full_path_to_columns_def_file="$htdocs/$theme/$lang/$columns_def_file";
886
    my $full_path_to_columns_def_file="$htdocs/$theme/$lang/$columns_def_file";
887
    open (my $fh, $full_path_to_columns_def_file);
887
    open (my $fh, '<:encoding(utf-8)', $full_path_to_columns_def_file);
888
    while ( my $input = <$fh> ){
888
    while ( my $input = <$fh> ){
889
        chomp $input;
889
        chomp $input;
890
        if ( $input =~ m|<field name="(.*)">(.*)</field>| ) {
890
        if ( $input =~ m|<field name="(.*)">(.*)</field>| ) {
891
- 

Return to bug 14817