Skip to content

Commit

Permalink
fix cookie paths
Browse files Browse the repository at this point in the history
originally added in #137
  • Loading branch information
jazzsequence committed Sep 10, 2024
1 parent ff8b32f commit ead3116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/application.pantheon.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,6 @@
// Cookie settings.
defined( 'COOKIE_DOMAIN' ) or Config::define( 'COOKIE_DOMAIN', PANTHEON_HOSTNAME );
defined( 'ADMIN_COOKIE_PATH' ) or Config::define( 'ADMIN_COOKIE_PATH', '/' );
defined( 'COOKIEPATH' ) or Config::define( 'COOKIEPATH', '' );
defined( 'SITECOOKIEPATH' ) or Config::define( 'SITECOOKIEPATH', '' );
defined( 'COOKIEPATH' ) or Config::define( 'COOKIEPATH', '/' );
defined( 'SITECOOKIEPATH' ) or Config::define( 'SITECOOKIEPATH', '/' );
}

0 comments on commit ead3116

Please sign in to comment.