Actions
Bug #71749
closedCorrect invalid last-modified header in HTTP response
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2015-11-21
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
easy
Is Regression:
No
Sprint Focus:
Description
System extension EXT:form sends an invalid date/time value in HTTP header line "Last-Modified:"
when responding to AJAX calls with JSON data (saveAction and loadAction).
A space is missing between time and "GMT":
Last-Modified: Sat, 21 Nov 2015 01:14:42GMT
It should be:
Last-Modified: Sat, 21 Nov 2015 01:14:42 GMT
According to RFC 2616, Section 14.29 the correct syntax is: "Last-Modified" ":" HTTP-date
where timestamp and timezone abbreviation are separated by a space :-)
Actions