I had a similar problem.. but NOT at upload..
question: if you edit the title in editimage, does it allow full title?
Luc
the problem are some replacements.. strtolower etc.. functions that are not multibyte compatible. Vbulletin has replacements for those function but not for all..
Vbgallery has a problem with foreign chars (that was my problem) when truncating foreign character titles. There are several fixes that can be applied for that, using vbsubstr instead of substr functions..
But i would only touch that if you really run into the problem.
In Your case i think it could come from the strtolower function with ucwords that is not multibyte compatible.
try following:
there are 2 or 3 instances where this or similar code is used:
Code:
Content visible to verified customers only.
search for ucwords in gallery_functions.php, upload.php, gallery_imageedit.php and maybe showimage.php.. (not sure.. i'm on a laptop at work and cant see my install)
Just rem them out with // the change will be, that the titles will no longer be lowercase with first letter capitalized.
example:
Code:
Content visible to verified customers only.
Not sure if that works.. but its a try
Luc