diff --git a/reference/session/functions/session-cache-expire.xml b/reference/session/functions/session-cache-expire.xml index 5e8f6fcab5..e8ab3477ed 100644 --- a/reference/session/functions/session-cache-expire.xml +++ b/reference/session/functions/session-cache-expire.xml @@ -1,5 +1,5 @@ - + @@ -19,7 +19,7 @@ current cache expire is replaced with new_cache_expire. - See also the session.cache_expire + Also see the session.cache_expire configuration directive. diff --git a/reference/session/functions/session-cache-limiter.xml b/reference/session/functions/session-cache-limiter.xml index 1c8206a1d2..73c1d1880c 100644 --- a/reference/session/functions/session-cache-limiter.xml +++ b/reference/session/functions/session-cache-limiter.xml @@ -1,5 +1,5 @@ - + @@ -19,13 +19,13 @@ new value. - The cache limiter controls the cache control HTTP headers sent to the - client. These headers determine the rules by which the page content - may be cached. Setting the cache limiter to nocache, - for example, would disallow any client-side caching. A value of - public, however, would permit caching. It can also - be set to private, which is slightly more restrictive - than public. + The cache limiter defines which cache control HTTP headers are sent to + the client. These headers determine the rules by which the page content + may be cached by the client and intermediate proxies. Setting the cache + limiter to nocache disallows any client/proxy caching. + A value of public permits caching by proxies and the + client, whereas private disallows caching by proxies + and permits the client to cache the contents. In private mode, the Expire header sent to the @@ -36,7 +36,7 @@ - private_no_expire was added in PHP 4.2.0dev. + private_no_expire was added in PHP 4.2.0. @@ -63,7 +63,7 @@ echo "The cache limiter is now set to $cache_limiter

"; - See also the session.cache_limiter + Also see the session.cache_limiter configuration directive.