4
I've found the cause. Since I'm not a coder I don't understand why... but however...
In 2.0.6, only 2 lines of codes have changed in edituser.php. Those 2 lines concern the fields (oh, what a coincidence !
) user_sig, and bio. So I've put back the original lines of 2.5.0.2 and everything works fine now, I don't get thos anoying "...".
Here is what to do :
In edituser.php, at the line 95 change
$edituser->setVar('user_sig', xoops_substr($user_sig, 0, 255));
To :
$edituser->setVar('user_sig', $user_sig);
In line 111, change :
$edituser->setVar('bio', xoops_substr($bio, 0, 255));
To :
$edituser->setVar('bio', $bio);
That's it