Thread Update neues Board: Design und ein paar Bugs (172 answers)
Opened by esskar at 2004-02-21 14:40

ptk
 2004-04-27 14:20
#39747 #39747
User since
2003-11-28
3645 Artikel
ModeratorIn
[default_avatar]
Es waere wahrscheinlich am Besten, wenn board.pl CGI::Compress::Gzip immer optional verwendet. Zum Beispiel:

Code: (dl )
1
2
3
4
5
6
7
8
my $cgi;
if (eval { require CGI::Compress::Gzip; 1 } and
exists $ENV{HTTP_ACCEPT_ENCODING} and
$ENV{HTTP_ACCEPT_ENCODING} =~ /gzip/i) {
$cgi = CGI::Compress::Gzip->new();
}else {
$cgi = CGI->new();
}


Ich jedenfalls programmiere immer so defensiv...

View full thread Update neues Board: Design und ein paar Bugs