From 95306605e71f4e98fb8a7efe8deaa12b50ecfcbd Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Mon, 5 Mar 2007 14:40:01 +1300 Subject: [PATCH] Some Apache installations will send an X-Pad in some circumstances, but we should always ignore if it happens. --- testing/normalise_result | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testing/normalise_result b/testing/normalise_result index 9fd1af57..65241bdf 100755 --- a/testing/normalise_result +++ b/testing/normalise_result @@ -17,6 +17,10 @@ while( ) { $_ = ""; }; + /^X-Pad: avoid browser bug/ && do { + $_ = ""; + }; + /^X-RSCDS-Version: RSCDS\/[0-9.]+\.[0-9.]+\.[0-9.]+; DB\/[0-9.]+\.[0-9.]+\.[0-9.]+/ && do { $_ = ""; };