I found a specific solution for my problem.
Be carfull i don't know consequences of this change.
i edit \administrator\components\com_comprofiler\comprofiler.class.php, line 3274
Code:
/**
* Creates a tab with title text and starts that tabs page
* @param pID - This is the pane unique identifier
* @param tabText - This is what is displayed on the tab
* @param paneid - This is the parent pane to build this tab on
*/
function startTab( $pID, $tabText, $paneid ) {
// not needed anymore since DOM is ready when we start:
// $js = 'tabPane' . $pID . '.addTabPage(document.getElementById("cbtab' . $paneid . '"));';
// $this->_outputJs( $pID, $js );
return '<div class="cb_tab_container cb_tab_content cb_tab_div cb_tab_edit" id="cb_tabid_' . $paneid . '">'
. '<div class="contentheading">' . $tabText . '</div>'
. '<div class="contentpaneopen">';
}
/**
* Ends a tab page
*/
function endTab( ) {
return '</div></div>';
}
I hope this could help ?...