[rt-users] PNG JPG LOGO

Jeff Voskamp javoskam at uwaterloo.ca
Wed Aug 16 15:47:32 EDT 2006


David Smithson wrote:
> Yes.  Other (smaller) PNG images work.  Not sure what the upper limit is, but I reduce the size of the image down to 3k, it works.
>   
The autohandler copies the selected file over after setting the 
content_type.
The codes does
    local $/ = \16384;
    $m->out($_) while (<$fh>);

shouldn't that be
    local $/ = undef;
    $m->out($_) while (<$fh>);

?

Jeff Voskamp



More information about the rt-users mailing list