Call session_cache_limiter() before starting a session
authorBryan Davis <bd808@wikimedia.org>
Mon, 25 Jan 2016 17:04:29 +0000 (10:04 -0700)
committerBryan Davis <bd808@wikimedia.org>
Mon, 25 Jan 2016 18:23:14 +0000 (11:23 -0700)
commit7491b52f700e220814a8190781fd794b4dd88a20
tree6a29dc0a2c246d13b70ff91b9ae1881dac8d2ed4
parent31d4359b45a4a8d7174753ba90ee33de685160cb
Call session_cache_limiter() before starting a session

Call `session_cache_limiter( 'private, must-revalidate' );` before
starting a session to specify the cache control headers that PHP will
automatically emit. The calls are wrapped in MediaWiki\quietCall to
suppress "headers have already been sent" warnings that may come from PHP.

If not called explicitly PHP will default to using
the value of the session.cache_limiter ini setting. Some values of that
setting will cause PHP to add a "Pragma: no-cache" header to the
response. Certain user agents (e.g. Firefox) treat that particular
header as a signal to aggressively flush the response from local cache
to the point that back button navigation will not work.

The value used was present in `wfSetupSession` prior to a73c5b7.

Bug: T124510
Change-Id: I942f8420c39c8cec5781ea8f6cc5619fd15f13cd
includes/GlobalFunctions.php
includes/Setup.php
includes/context/RequestContext.php
includes/session/SessionBackend.php