From c4e7b889386c010f6a886776411cadfb8e90785d Mon Sep 17 00:00:00 2001 From: cschantz Date: Mon, 2 Mar 2026 21:28:52 -0500 Subject: [PATCH] FIX: Syntax error - missing fi in extract_user_from_path function Line 1493 had ';;' instead of 'fi' to close the if statement in the default case of the extract_user_from_path function. This caused syntax errors. Changed: ;; esac To: fi ;; esac Script syntax now verified OK. --- modules/website/wordpress/wordpress-cron-manager.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/website/wordpress/wordpress-cron-manager.sh b/modules/website/wordpress/wordpress-cron-manager.sh index ebb497d..0745b9b 100755 --- a/modules/website/wordpress/wordpress-cron-manager.sh +++ b/modules/website/wordpress/wordpress-cron-manager.sh @@ -1490,6 +1490,7 @@ extract_user_from_path() { user=$(stat -c %U "$site_path" 2>/dev/null) if [ -z "$user" ]; then user="www-data" + fi ;; esac