[12-Nov-2009 11:46:58] PHP Fatal error:
Call to a member function getContent() on a non-object in
/usr/home/xxxxxxxxxxxxxxx/web/modules/RateThis/function.ratingsTab.php on line 39
Well, the solution that works for me whas edit that file and edit this code:
Code: Select all
$hm = $gCms->GetHierarchyManager();
$node = $hm->getNodeById($row['pageID']);
$content =& $node->getContent();
if ($content != null) //Just in case
{
$pageTitle=$content->Name();
}
Code: Select all
$hm = $gCms->GetHierarchyManager();
$node = $hm->getNodeById($row['pageID']);
if($node != null){
$content =& $node->getContent();
if ($content != null) //Just in case
{
$pageTitle=$content->Name();
}
}//node diff null