1
0
mirror of https://github.com/php/doc-en.git synced 2026-03-23 23:32:18 +01:00

Fix Last-Modified header description in session_cache_limiter() (#5095)

This commit is contained in:
Louis-Arnaud
2026-01-13 19:56:43 +01:00
committed by GitHub
parent aec0a64f55
commit 1cef066aa4

View File

@@ -72,7 +72,7 @@
<![CDATA[
Expires: (sometime in the future, according session.cache_expire)
Cache-Control: public, max-age=(sometime in the future, according to session.cache_expire)
Last-Modified: (the timestamp of when the session was last saved)
Last-Modified: (the timestamp of the current script)
]]>
</programlisting>
</entry>
@@ -83,7 +83,7 @@ Last-Modified: (the timestamp of when the session was last saved)
<programlisting role="header">
<![CDATA[
Cache-Control: private, max-age=(session.cache_expire in the future)
Last-Modified: (the timestamp of when the session was last saved)
Last-Modified: (the timestamp of the current script)
]]>
</programlisting>
</entry>
@@ -95,7 +95,7 @@ Last-Modified: (the timestamp of when the session was last saved)
<![CDATA[
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: private, max-age=(session.cache_expire in the future)
Last-Modified: (the timestamp of when the session was last saved)
Last-Modified: (the timestamp of the current script)
]]>
</programlisting>
</entry>