Skip to content

Commit

Permalink
Merge pull request #129 from thomasjacquin/functions.php-bug-fix-typo
Browse files Browse the repository at this point in the history
functions.php: bug fix: typo
  • Loading branch information
EricClaeys authored Oct 10, 2022
2 parents 1820168 + 102bf8d commit 863afd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ function display_thumbnails($dir, $file_prefix, $title)

$thumb_dir = "$dir/thumbnails";
if (! is_dir($thumb_dir)) {
if (! mkdir($thum_dir, 0775))
if (! mkdir($thumb_dir, 0775))
echo "<p>Unable to make '$thum_dir' directory. You will need to create it manually.</p>";
print_r(error_get_last());
}
Expand Down

0 comments on commit 863afd5

Please sign in to comment.