Index: branches/5.3.x/core/kernel/session/session.php =================================================================== diff -u -N -r16156 -r16519 --- branches/5.3.x/core/kernel/session/session.php (.../session.php) (revision 16156) +++ branches/5.3.x/core/kernel/session/session.php (.../session.php) (revision 16519) @@ -1,6 +1,6 @@ Application->recallObject('kHTTPQuery'); - /* @var $http_query kHTTPQuery */ $cookies_on = array_key_exists('cookies_on', $http_query->Cookie); // not good here @@ -454,8 +454,8 @@ function getFlashSID() { + /** @var kHTTPQuery $http_query */ $http_query = $this->Application->recallObject('kHTTPQuery'); - /* @var $http_query kHTTPQuery */ return getArrayValue($http_query->Post, 'flashsid'); } @@ -470,8 +470,8 @@ $get_sid = $this->getFlashSID(); if (!$get_sid) { + /** @var kHTTPQuery $http_query */ $http_query = $this->Application->recallObject('kHTTPQuery'); - /* @var $http_query kHTTPQuery */ $get_sid = getArrayValue($http_query->Get, $this->GETName); } @@ -893,8 +893,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