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

(-)a/C4/Templates.pm (-2 / +1 lines)
Lines 332-338 sub GetColumnDefs { Link Here
332
    # Build columns.def path
332
    # Build columns.def path
333
    my $path = "$htdocs/$theme/$lang/$columns_file";
333
    my $path = "$htdocs/$theme/$lang/$columns_file";
334
    my $fh;
334
    my $fh;
335
    if ( ! open ( $fh, q{<}, $path ) )  {
335
    if ( ! open ( $fh, q{<:encoding(utf-8)}, $path ) )  {
336
        carp "Error opening $path. Check your templates.";
336
        carp "Error opening $path. Check your templates.";
337
        return;
337
        return;
338
    }
338
    }
339
- 

Return to bug 14817