in reply to Re: 404 image errors
in thread 404 image errors
I'd also suggest that
was changed tofor (@image_extensions) { if ($url =~ /\.${_}$/) {
which makes things a bit more clearfor my $ext (@image_extensions) { if ($url =~ /\.$ext$) {
gav^
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: 404 image errors
by cjf (Parson) on Jun 11, 2002 at 12:58 UTC |