Skip to content
Snippets Groups Projects
Commit 763460d2 authored by catch's avatar catch
Browse files

Issue #3470075 by andypost, ankitv18: PHP 8.4 GET/POST sessions are deprecated

(cherry picked from commit 68589170)
parent 213e9669
No related branches found
No related tags found
5 merge requests!122353526426-warning-for-missing,!11958Issue #3490507 by alexpott, smustgrave: Fix bogus mocking in...,!11769Issue #3517987: Add option to contextual filters to encode slashes in query parameter.,!11185Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4,!9944Issue #3483353: Consider making the createCopy config action optionally fail...
Pipeline #269859 passed with warnings
Pipeline: drupal

#269873

    Pipeline: drupal

    #269865

      ......@@ -1066,8 +1066,10 @@ public static function bootEnvironment($app_root = NULL) {
      // Use session cookies, not transparent sessions that puts the session id
      // in the query string.
      ini_set('session.use_cookies', '1');
      ini_set('session.use_only_cookies', '1');
      ini_set('session.use_trans_sid', '0');
      if (\PHP_VERSION_ID < 80400) {
      ini_set('session.use_only_cookies', '1');
      ini_set('session.use_trans_sid', '0');
      }
      // Don't send HTTP headers using PHP's session handler.
      // Send an empty string to disable the cache limiter.
      ini_set('session.cache_limiter', '');
      ......
      0% Loading or .
      You are about to add 0 people to the discussion. Proceed with caution.
      Please register or to comment