line ~118: $images[]=strtolower(substr($file, 6)); does not work on servers with case sensitive URLS.
should be:
$images[]=substr($file, 6);
Log in to post a comment.