I have resolved my problem ^^
On the ./profile.php file, you have this part of the code:
PHP Code:
$profilepic['comment'] = fetch_censored_text($profilepic['comment']);
$show['profilepic'] = iif($profilepic, true, false);
You must to change this 2 lines like this:
PHP Code:
$show['profilepic'] = iif($profilepic, true, false);
$profilepic['comment'] = fetch_censored_text($profilepic['comment']);
And all is ok