I got the following:
$_SESSION["content"] = $contentList->Value;
Where it assigns an array of objects to the session variable... When I then try to access the array it return 60 elements for example that are the size of the array but the objects in the array are blank... None of the properties in them are set.
Try to access:
$contentList = $_SESSION["content"];
foreach($contentList as $currentContent)
{
//......
}
$_SESSION['content']? if you usevar_dump($_SESSION['content'])after the assigning the value, does the ouput look correct ?