4images Forum & Community

4images Issues / Ausgaben => Discussion & Troubleshooting => Topic started by: SOz92 on August 05, 2012, 08:42:16 PM

Title: First letter capitalized
Post 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
Title: Re: First letter capitalized
Post by: Rembrandt on August 06, 2012, 06:04:10 AM
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
Title: Re: First letter capitalized
Post by: SOz92 on August 06, 2012, 01:05:12 PM
Fot the old pictures upladed, its not funtionally, i think it's on details.html
Title: Re: First letter capitalized
Post by: Rembrandt on August 06, 2012, 03:57:29 PM
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
Title: Re: First letter capitalized
Post by: SOz92 on August 08, 2012, 05:09:42 PM
I put that, and doesn't work