The problem of t.gif vs T.gif is a server issue, some servers are case sensitive, others not. It should be a simple fix, which at this point I haven’t implemented yet (along with a number of other items.) I’ve been snowed under by other projects so this has gotton put aside. The fix would be a simple strtolower() on the initial letter variable as it is added to the directory and the file extention.
Edit the plugin, find the line where it displays the image:
if ($showImage) {
$firstLetter = "<img src='".$imageFolder.$firstLetter.$imgExt."' alt='".$firstLetter."' title='Drop Case Letter - ".$firstLetter."' />";
}
Add strtolower as the src attribute is built
if ($showImage) {
$firstLetter = "<img src='".$imageFolder.strtolower($firstLetter).$imgExt."' alt='".$firstLetter."' title='Drop Case Letter - ".$firstLetter."' />";
}
That should fix the case sensitivity problem.
TG