Skip to content

Commit

Permalink
Merge pull request #615 from magento-folks/bugs
Browse files Browse the repository at this point in the history
[Folks] Bugfixes
  • Loading branch information
slavvka committed May 13, 2016
2 parents 5471bca + 727cd9d commit 2f91db8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ protected function _afterLoad()
* Assign parent items
*/
foreach ($this as $item) {
$this->_resource->unserializeFields($item);
if ($item->getParentItemId()) {
$item->setParentItem($this->getItemById($item->getParentItemId()));
}
Expand Down
2 changes: 1 addition & 1 deletion lib/internal/Magento/Framework/Session/SessionManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ public function regenerateId()
return $this;
}
if ($this->isSessionExists()) {
session_regenerate_id(true);
session_regenerate_id(false);
} else {
session_start();
}
Expand Down

0 comments on commit 2f91db8

Please sign in to comment.