Problem with rateThis admin panel in 1.6.6 (SOLVED)
Posted: Thu Nov 12, 2009 11:01 am
Hi, I got this error when I enter the admin panel for rateThis module:
[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:
for this one:
Hope it helps
[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