Hi Cimy,
Playing around with the latest version of your wonderful plugin (thanks!), I noticed double slashes in the file paths to images right after the user, like so:
whatever/wp-content/Cimy_User_Extra_Fields/myuser//image1.jpg
Allthough the image displays correctly it's annoying to have double slashes in the url. I never noticed this in an older version I tested.
If you check the code in cimy_user_extra_fields.php, around line 870
// picture url to write in the DB
There’s this code:
$data .= $user_login."/".$type_path."/".$file_name;
However, $type_path is only set for $type == "file” or $type == "avatar" and is empty for pictures, hence a double slash.
Can you confirm this?
I crossposted this to your site as there was a comment by snails on 27 november 2010 mentioning the same thing.