This code has been working fine on PHP versions 5.6, 7.0, 7.1:
session_start();
$f3 = Base::instance();
Just upgraded to the newly stable PHPv7.2, and it throws the error:
Internal Server Error
session_cache_limiter(): Cannot change cache limiter when session is active
If I reverse the session call thus:
$f3 = Base::instance();
session_start();
It works fine again. I should be able to call session_start before assigning F3.
base.php has a call to session_cache_limiter('') on line 2257
F3 version 3.6.2-Release