All other aspects of the facebook connect is working just fine, however it creates the username as a number and I am wondering if anyone else has had that problem and knows a solution
if(osc_version()>=310) {
$manager->update( array('b_active' => '1', 's_username' => $userID)
,array('pk_i_id' => $userID) );
} else {
$manager->update( array('b_active' => '1')
,array('pk_i_id' => $userID) );
}
seems to be the above code doing this on the facebook connect, I was just curious why you are setting the username as the user id?