From bef8eb902d9b3b75e63780cc5f733c316c7a13a9 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Wed, 13 May 2026 14:47:36 +1000 Subject: [PATCH] Replace deprecated `${var}` with `{$var}`. --- includes/functions/core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions/core.php b/includes/functions/core.php index bf5bb10..d92b1af 100644 --- a/includes/functions/core.php +++ b/includes/functions/core.php @@ -75,7 +75,7 @@ function deactivate() { * @return string|WP_Error URL */ function script_url( $script ) { - return AD_REFRESH_CONTROL_URL . "dist/js/${script}.js"; + return AD_REFRESH_CONTROL_URL . "dist/js/{$script}.js"; } /**