Index: branches/RC/core/kernel/session/session.php =================================================================== diff -u -r10294 -r10372 --- branches/RC/core/kernel/session/session.php (.../session.php) (revision 10294) +++ branches/RC/core/kernel/session/session.php (.../session.php) (revision 10372) @@ -779,7 +779,14 @@ */ function Refresh() { - if ($this->CookiesEnabled) $this->SetSessionCookie(); //we need to refresh the cookie + if ($this->Application->GetVar('skip_session_refresh')) { + return ; + } + + if ($this->CookiesEnabled) { + // we need to refresh the cookie + $this->SetSessionCookie(); + } $this->Storage->UpdateSession($this); }