Last modified: 2010-05-15 15:37:48 UTC
Line 460 in OutputPage.php is: setcookie( $name, $val, $exp, '/' ); This hard-codes the path, and ignores the domain for cookies configured to as $wgCookiePath, $wgCookieDomain in the settings. I suppose this is an oversight (cookies set in all other places seem to use the settings). The correct version would be: global $wgCookiePath, $wgCookieDomain; setcookie( $name, $val, $exp, $wgCookiePath, $wgCookieDomain );
still present in 1.5.0
Got removed in the 1.6 branch.