I have a videos protal system that I just udated and I am getting this error:
[24-Feb-2013 02:48:44] PHP Fatal error: Call to a member function portalIndex() on a non-object in /home/user/public_html/admin/applications_addon/other/videos/modules_public/display/index.php on line 152
The line that is on contains ths:
$this->output .= $this->registry->output->getTemplate('videos')->portalIndex( $categories, $memberVideos, $featuredVideos );
This is the code around it:
//-----------------------------------------
// Portal or category layout?
//-----------------------------------------
$featuredVideos = $this->registry->getClass('video_functions')->getFeaturedVideos();
$memberVideos = $this->registry->getClass('video_functions')->mainMemberVideos();
if( !$this->request['showcats'] AND $this->settings['vs_portal_layout'] )
{
$this->output .= $this->registry->output->getTemplate('videos')->portalIndex( $categories, $memberVideos, $featuredVideos );
}
else
{
$this->output .= $this->registry->output->getTemplate('videos')->categoryIndex( $categories, $memberVideos );
}
$this->output .= $this->stats();
}