Index: branches/5.3.x/core/kernel/session/session.php =================================================================== diff -u -N -r15974 -r16156 --- branches/5.3.x/core/kernel/session/session.php (.../session.php) (revision 15974) +++ branches/5.3.x/core/kernel/session/session.php (.../session.php) (revision 16156) @@ -1,6 +1,6 @@ Application->recallObject('HTTPQuery'); + $http_query = $this->Application->recallObject('kHTTPQuery'); /* @var $http_query kHTTPQuery */ $cookies_on = array_key_exists('cookies_on', $http_query->Cookie); // not good here @@ -453,7 +454,7 @@ function getFlashSID() { - $http_query = $this->Application->recallObject('HTTPQuery'); + $http_query = $this->Application->recallObject('kHTTPQuery'); /* @var $http_query kHTTPQuery */ return getArrayValue($http_query->Post, 'flashsid'); @@ -469,7 +470,7 @@ $get_sid = $this->getFlashSID(); if (!$get_sid) { - $http_query = $this->Application->recallObject('HTTPQuery'); + $http_query = $this->Application->recallObject('kHTTPQuery'); /* @var $http_query kHTTPQuery */ $get_sid = getArrayValue($http_query->Get, $this->GETName);