Thank you for this!The second change is in append_sid (the root cause of it all) in functions.php.This change means that people without sid in a cookie cannot have a session (in my mind there should never have been an append_sid function at all).Code:
[...]
I am still seeing an sid on the faq link and the root of the breadcrumb... are these needed?
Should we modify this part too?
// Use the short variant if possible
if ($params === false)
{
// Append session id
if (!$session_id)
{
return $url . (($append_url) ? $url_delim . $append_url : '') . $anchor;
}
else
{
return $url . (($append_url) ? $url_delim . $append_url . $amp_delim : $url_delim) . 'sid=' . $session_id . $anchor;
}
}
Statistics: Posted by JacobM — Thu May 01, 2025 7:17 am