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

(-)a/C4/Reports/Guided.pm (-2 / +1 lines)
Lines 871-877 sub _get_column_defs { Link Here
871
    my ($theme, $lang, $availablethemes) = C4::Templates::themelanguage($htdocs, 'about.tt', $section, $cgi);
871
    my ($theme, $lang, $availablethemes) = C4::Templates::themelanguage($htdocs, 'about.tt', $section, $cgi);
872
872
873
    my $full_path_to_columns_def_file="$htdocs/$theme/$lang/$columns_def_file";
873
    my $full_path_to_columns_def_file="$htdocs/$theme/$lang/$columns_def_file";
874
    open (my $fh, $full_path_to_columns_def_file);
874
    open (my $fh, '<', $full_path_to_columns_def_file);
875
    while ( my $input = <$fh> ){
875
    while ( my $input = <$fh> ){
876
        chomp $input;
876
        chomp $input;
877
        if ( $input =~ m|<field name="(.*)">(.*)</field>| ) {
877
        if ( $input =~ m|<field name="(.*)">(.*)</field>| ) {
878
- 

Return to bug 6679