From 102bf8db0196ac9b5084c663a495da9da92cc5b9 Mon Sep 17 00:00:00 2001 From: EricClaeys <83164203+EricClaeys@users.noreply.github.com> Date: Mon, 10 Oct 2022 15:59:11 -0500 Subject: [PATCH] functions.php: bug fix: typo --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 527f72d..a4afc77 100644 --- a/functions.php +++ b/functions.php @@ -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 "
Unable to make '$thum_dir' directory. You will need to create it manually.
"; print_r(error_get_last()); }