getCfg( 'absolute_path' ) . '/administrator/components/com_comprofiler/plugin.foundation.php' ) ) { echo 'CB not installed'; return; } include_once( $mainframe->getCfg( 'absolute_path' ) . '/administrator/components/com_comprofiler/plugin.foundation.php' ); } cbimport( 'cb.database' ); cbimport( 'language.front' ); include_once('includes/magicquotes.inc.php'); include_once('includes/functions.inc.php'); // ob_start(); $bailout = false; echo '

There you are!

'; // check for userid // check for Ambassador committee membership // is User logged in to site! if( !isset($user->id) || $user->id == "" ) { $bailout = true; } if (!$bailout) { $cb_user =& CBuser::getInstance( $user->id ); if (!$cb_user) { $user =& CBuser::getInstance( null ); } else { echo '
';
		$field = $cb_user->getField('name');
		echo $field;
		echo '
'; } } ?>