On Tue, 2012-04-10 at 15:11 +0100, corpus.defero wrote:
> Good afternoon,
> 
> I have this hit:
> 0.4 INVALID_DATE           Invalid Date: header (not RFC 2822)
> 
> Catching on:
> Date: Tue, 10 Apr 12 11:36:40 +0200
> 
> Which in turn is produced by this line off PHP code:
> $headers .= "Date: ".date(DATE_RFC822)."\n";
> 
> Unless I've gone made, the issue is the year being 2 digits, is that
> correct?
> 
Ignore me.

$headers .= "Date: ".date(DATE_RFC822)."\n"; 
!=
$headers .= "Date: ".date(DATE_RFC2822)."\n";

Derrrrrrr, what's the matter with me......

Reply via email to