Skip to content

Commit

Permalink
functions.php: bug fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
EricClaeys authored Oct 10, 2022
1 parent 1820168 commit 102bf8d
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 102bf8d

Please sign in to comment.