Tired of your pictures being sorted as 1.jpg 10.jpg 20.jpg. (Mine are in chronological order by number) Use Natural Sort.
Edit common.inc and find the line that has "sort($filelist);"
And change it to: natsort($filelist); $filelist = array_values($filelist);
Adding the second line is necessary because natsort doesn't change the key values.
Log in to post a comment.
Tired of your pictures being sorted as 1.jpg 10.jpg 20.jpg. (Mine are in chronological order by number)
Use Natural Sort.
Edit common.inc and find the line that has "sort($filelist);"
And change it to:
natsort($filelist);
$filelist = array_values($filelist);
Adding the second line is necessary because natsort doesn't change the key values.