4images Forum & Community
4images Issues / Ausgaben => Discussion & Troubleshooting => Topic started by: SOz92 on August 05, 2012, 08:42:16 PM
-
Hi, i want to put in my all images the firs letter of all words capitalized.
Example:
An user upload some picture with the name: the scorpion king
I just want to come out like this: The Scorpion King
-
Hi!
search in member.php:
$image_name = get_file_name($new_name);
}
and insert below:
$image_name = ucwords($image_name);
$image_name = ucwords(strtolower($image_name));
test it...
mfg Andi
-
Fot the old pictures upladed, its not funtionally, i think it's on details.html
-
search in includes/functions.php:
$site_template->register_vars(array(
"media_src" => $media_src,
insert above:
$image_name = ucwords($image_name);
$image_name = ucwords(strtolower($image_name));
mfg Andi
-
I put that, and doesn't work