Index: branches/5.2.x/core/kernel/session/session.php =================================================================== diff -u -N -r16339 -r16513 --- branches/5.2.x/core/kernel/session/session.php (.../session.php) (revision 16339) +++ branches/5.2.x/core/kernel/session/session.php (.../session.php) (revision 16513) @@ -1,6 +1,6 @@ Application->recallObject('HTTPQuery'); - /* @var $http_query kHTTPQuery */ $cookies_on = array_key_exists('cookies_on', $http_query->Cookie); // not good here @@ -450,8 +450,8 @@ function getFlashSID() { + /** @var kHTTPQuery $http_query */ $http_query = $this->Application->recallObject('HTTPQuery'); - /* @var $http_query kHTTPQuery */ return getArrayValue($http_query->Post, 'flashsid'); } @@ -466,8 +466,8 @@ $get_sid = $this->getFlashSID(); if (!$get_sid) { + /** @var kHTTPQuery $http_query */ $http_query = $this->Application->recallObject('HTTPQuery'); - /* @var $http_query kHTTPQuery */ $get_sid = getArrayValue($http_query->Get, $this->GETName); } @@ -891,8 +891,8 @@ $admin_saved = true; + /** @var Session $admin_session */ $admin_session = $this->Application->recallObject('Session.admin'); - /* @var $admin_session Session */ // save to admin last_template too, because when F5 is pressed in frameset Front-End frame should reload as well