We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If your photos folder contains this : pic1.jpg pic2.jpg pic3_to_skip.jpg pic4.jpg
And $SkipObjects=array('pic3_to_skip.jpg'); Then MinigalNano display only pic1.jpg and pic2.jpg. Not pic4.jpg.
Source of the problem, in index.php line 186 :
while (false !== ($file = readdir($handle)) && !in_array($file, $SkipObjects)) {
Should be replace by :
while (false !== ($file = readdir($handle))) { if(in_array($file, $SkipObjects)){ continue; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If your photos folder contains this :
pic1.jpg
pic2.jpg
pic3_to_skip.jpg
pic4.jpg
And $SkipObjects=array('pic3_to_skip.jpg');
Then MinigalNano display only pic1.jpg and pic2.jpg. Not pic4.jpg.
Source of the problem, in index.php line 186 :
Should be replace by :
The text was updated successfully, but these errors were encountered: