diff options
Diffstat (limited to 'rt/share/html/NoAuth/js/autohandler')
-rw-r--r-- | rt/share/html/NoAuth/js/autohandler | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/rt/share/html/NoAuth/js/autohandler b/rt/share/html/NoAuth/js/autohandler index c17af937e..8f8c3127c 100644 --- a/rt/share/html/NoAuth/js/autohandler +++ b/rt/share/html/NoAuth/js/autohandler @@ -46,17 +46,8 @@ %# %# END BPS TAGGED BLOCK }}} <%init> - -my $type; -my $file = $m->base_comp->source_file; - -if ($file =~ /\.(gif|png|jpe?g)$/i) { - my $relfile = $m->base_comp->path; - RT::Interface::Web->SendStaticFile( File => $file, RelativeFile => $relfile ); -} else { - &RT::Interface::Web::StaticFileHeaders(); - $r->content_type('application/x-javascript'); - $m->call_next(); - return(); -} +RT::Interface::Web::StaticFileHeaders(); +$r->content_type('application/x-javascript; charset=utf-8'); +$m->call_next(); +return(); </%init> |