# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Apply Diff Patch action on respective folder. # It uses platform neutral UTF-8 encoding. # Above lines and this line are ignored by the patching process. --- administrator/components/com_comprofiler/plugin.foundation.php +++ administrator/components/com_comprofiler/plugin.foundation.php @@ -2568,6 +2568,8 @@ 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; }