Some Apache installations will send an X-Pad in some circumstances, but

we should always ignore if it happens.
This commit is contained in:
Andrew McMillan 2007-03-05 14:40:01 +13:00
parent f058968e87
commit 95306605e7

View File

@ -17,6 +17,10 @@ while( <STDIN> ) {
$_ = "";
};
/^X-Pad: avoid browser bug/ && do {
$_ = "";
};
/^X-RSCDS-Version: RSCDS\/[0-9.]+\.[0-9.]+\.[0-9.]+; DB\/[0-9.]+\.[0-9.]+\.[0-9.]+/ && do {
$_ = "";
};