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

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

Return to bug 6679