Skip to content

Commit

Permalink
functions.php: fix typo in variable name (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
EricClaeys authored May 1, 2023
1 parent 863afd5 commit 897ea41
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 @@ -257,7 +257,7 @@ function display_thumbnails($dir, $file_prefix, $title)
$thumb_dir = "$dir/thumbnails";
if (! is_dir($thumb_dir)) {
if (! mkdir($thumb_dir, 0775))
echo "<p>Unable to make '$thum_dir' directory. You will need to create it manually.</p>";
echo "<p>Unable to make '$thumb_dir' directory. You will need to create it manually.</p>";
print_r(error_get_last());
}

Expand Down

0 comments on commit 897ea41

Please sign in to comment.