1
Ok a few Problems here one i need to change the amount of text a user can put in the extra info box on there profile as i have it set up so they can add html problem is 255 charecters isnt much for any html. I have changed the number from 255 in the edit user php file to 9000
$edituser->setVar('user_sig', xoops_substr($user_sig, 0, 500));
$user_viewemail = (!empty($user_viewemail)) ? 1 : 0;
$edituser->setVar('user_viewemail', $user_viewemail);
$edituser->setVar('user_aim', $user_aim);
$edituser->setVar('user_yim', $user_yim);
$edituser->setVar('user_msnm', $user_msnm);
if ( isset($password) && $password != '') {
$edituser->setVar('pass', md5($password));
}
$attachsig = isset($attachsig) ? intval($attachsig) : 0;
$edituser->setVar('attachsig', $attachsig);
$edituser->setVar('timezone_offset', $timezone_offset);
$edituser->setVar('uorder', $uorder);
$edituser->setVar('umode', $umode);
$edituser->setVar('notify_method', $notify_method);
$edituser->setVar('notify_mode', $notify_mode);
$edituser->setVar('bio', xoops_substr($bio, 0, 9000));
just to try it but no sucess also i turned on the html use for the userinf php but now it show line breaks in my forum axamples are below look at the signature at the bottom of the user page then look at the forum link and you can see.
User InfoForum Topicany light on this would be nice
Thanks
Chet