Hi,
I just upgraded my Joomla 1.5.26 site to CB 1.9 and CB Subs 3.0. When I go to view a profile I now get the following PHP Notice:
Notice: Undefined property: getHeadshotTab::$baseurl in /home/stuntupg/public_html/components/com_comprofiler/plugin/user/plug_cbheadshot/cb.headshot.php on line 47
So, I changed line 47 from:
Code:
$return .= $this->baseurl . '/images/icons/filetypes/pdfprintable.GIF';
to this:
Code:
// $return .= $this->baseurl . '/images/icons/filetypes/pdfprintable.GIF';
$return .= '/images/icons/filetypes/pdfprintable.GIF';
Will that work ok? Seems to get rid of the error.