Thanks for reporting it here. This is the CB code which worked in RC2, and doesn't work anymore in RC3:
Code:
<?php
if (class_exists("JUser")) { // Joomla 1.5 :
$juser =& JUser::getInstance($user->id);
$params =& $juser->getParameters();
$params->loadSetupFile(JApplicationHelper::getPath( 'com_xml', 'com_users' ));
// $result = $params->render( 'params' );
if (is_callable(array("JParameter","getParams"))) {
$result = $params->getParams( $name ); //BBB new API submited to Jinx 17.4.2006.
} else {
...
the resulting foreach error is because $result above is not an array as a result of the above function.
Steps to reproduce: install CB 1.1, and edit an user.
As RC3 didn't go through ex-Q&T WG, we couldn't test and catch that API change before 1.5 RC3 got released. Is it possible to fix that for RC4 ?
Thanks,