Fix: Accept leading/trailing whitespace for Last-modified pseudo header.
authorThomas Hochstein <thh@inter.net>
Sat, 15 May 2010 14:53:48 +0000 (16:53 +0200)
committerThomas Hochstein <thh@inter.net>
Sat, 15 May 2010 14:53:48 +0000 (16:53 +0200)
Fixes #5.

Signed-off-by: Thomas Hochstein <thh@inter.net>
yapfaq.pl

index 00ecbc6..dd1edfd 100644 (file)
--- a/yapfaq.pl
+++ b/yapfaq.pl
@@ -263,7 +263,7 @@ sub postfaq {
     s/\r//;
     push (@Body, $_), next if $InRealBody;
     $InRealBody++ if /^$/;
-    $LastModified = $1 if /^Last-modified: (\S+)$/i;
+    $LastModified = $1 if /^Last-modified:\s*(\S+)\s*$/i;
     push @Body, $_;
   }
   close FH;
This page took 0.011805 seconds and 4 git commands to generate.