Earlier in this thread, a discussion to make listtab compatible with CB 1.0.2 was made.
If your have modified comprofiler.php as described, and your fields are still not saving, then make this fix:
[code:1]$database->setQuery( "SELECT f.* FROM #__comprofiler_fields f, #__comprofiler_tabs t"
. "\n WHERE f.published=1 and f.tabid = t.tabid AND t.enabled=1 and f.readonly=0 AND f.table like '?__comprofiler'" );
[/code:1]
[code:1]$database->setQuery( "SELECT f.* FROM #__comprofiler_fields f, #__comprofiler_tabs t"
. "\n WHERE f.published=1 and f.tabid = t.tabid AND t.enabled=1 and f.readonly=0 AND f.table like '#__comprofiler'" );[/code:1]
The difference between the two codes is the "?__" vs "#__" for comprofiler in the WHERE statement.