4images Forum & Community

4images Issues / Ausgaben => Feedback & Suggestions => Topic started by: thunderstrike on October 31, 2007, 12:29:00 PM

Title: [FIX] - includes/functions.php file
Post by: thunderstrike on October 31, 2007, 12:29:00 PM
This is lower case output (file extension is same).

Find:

Quote
return isset($regs[1]) ? $regs[1] : $basename;

replace:

Code: [Select]
return isset($regs[1]) ? strtolower(trim($regs[1])) : strtolower(trim($basename));

After - find:

Quote
return strtolower($regs[2]);

replace:

Code: [Select]
return strtolower(trim($regs[2]));