[DOC-CVS] [doc-en] master: Fix Last-Modified header description in session_cache_limiter() (#5095)
[email protected] (Louis-Arnaud via GitHub)
| Newsgroups | php.doc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Louis-Arnaud (lacatoire)
Committer: GitHub (web-flow)
Pusher: Girgias
Date: 2026-01-13T18:56:43Z
Commit: https://github.com/php/doc-en/commit/1cef066aa4ecd6691264701d0b6d7814230fa37c
Raw diff: https://github.com/php/doc-en/commit/1cef066aa4ecd6691264701d0b6d7814230fa37c.diff
Fix Last-Modified header description in session_cache_limiter() (#5095)
Changed paths:
M reference/session/functions/session-cache-limiter.xml
Diff:
diff --git a/reference/session/functions/session-cache-limiter.xml b/reference/session/functions/session-cache-limiter.xml
index dcfee2dd4936..79d660b2e7b9 100644
--- a/reference/session/functions/session-cache-limiter.xml
+++ b/reference/session/functions/session-cache-limiter.xml
@@ -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>