Bug #2288 ยป 2288.patch
administrator/components/com_comprofiler/plugin.foundation.php | ||
---|---|---|
function setPageTitle( $title ) {
|
||
if ( method_exists( $this->_baseFramework, 'setPageTitle' ) ) {
|
||
return $this->_baseFramework->setPageTitle( $title );
|
||
} elseif ( method_exists( $this->document->_cmsDoc, 'setTitle' ) ) {
|
||
return $this->document->_cmsDoc->setTitle( $title );
|
||
} else {
|
||
return null;
|
||
}
|