For the list_dir.php script, line 42 sets conditions to determine if an item should be written or not.
The conditions are:
if ( (is_file($search_dir . '/' . $item)) AND ((substr($item, 0, 1) != '.') )
I rewrote the condition to fit my preferences, and I will be referring to my version when asking my question, so if my code is wrong that could be the problem. But to the best of my knowledge, they are equivalent.
if (is_file($search_dir . '/' . $item) && sub_str($item, 0, 1) != '.')
The conditions are quite obvious, and stated in the text. But when I execute the