diff options
author | ivan <ivan> | 2011-04-18 23:15:19 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-04-18 23:15:19 +0000 |
commit | 75162bb14b3e38d66617077843f4dfdcaf09d5c4 (patch) | |
tree | d89dd49a476cf2f0859ed6a0adc2992ea6d69d04 /rt/share/html/NoAuth/css/dhandler | |
parent | fc6209f398899f0211cfcedeb81a3cd65e04a941 (diff) |
import rt 3.8.10
Diffstat (limited to 'rt/share/html/NoAuth/css/dhandler')
-rw-r--r-- | rt/share/html/NoAuth/css/dhandler | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rt/share/html/NoAuth/css/dhandler b/rt/share/html/NoAuth/css/dhandler index a72385f15..2472a9ff7 100644 --- a/rt/share/html/NoAuth/css/dhandler +++ b/rt/share/html/NoAuth/css/dhandler @@ -70,7 +70,7 @@ sub file_handle { my $self = shift; my $file = shift; my $content = $self->{'mason'}->scomp($file) || ''; - open my $fh, '<', \$content or die "$!"; + open( my $fh, '<', \$content ) or die "$!"; return $fh; } |