From ccad17c1ca3c4c0a05d3f7c329064b9948edfdbb Mon Sep 17 00:00:00 2001 From: priethor <27339341+priethor@users.noreply.github.com> Date: Fri, 14 Mar 2025 19:27:30 +0100 Subject: [PATCH 1/2] Fixo typos in secure-custom-fields.php --- secure-custom-fields.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/secure-custom-fields.php b/secure-custom-fields.php index 6dc24f50..a1d444c6 100644 --- a/secure-custom-fields.php +++ b/secure-custom-fields.php @@ -258,7 +258,7 @@ public function init() { // Update the name setting now that we're in the init hook. acf_update_setting( 'name', __( 'Secure Custom Fields', 'secure-custom-fields' ) ); - // Include 3rd party compatiblity. + // Include 3rd party compatibility. acf_include( 'includes/third-party.php' ); // Include wpml support. @@ -406,7 +406,7 @@ public function init() { */ do_action( 'acf/include_options_pages', ACF_MAJOR_VERSION ); - // If we're on 6.5 or newer, load block bindings. This will move to an autoloader in 6.3. + // If we're on WP 6.5 or newer, load block bindings. This will move to an autoloader in SCF 6.3. if ( version_compare( get_bloginfo( 'version' ), '6.5-beta1', '>=' ) ) { acf_include( 'includes/Blocks/Bindings.php' ); new ACF\Blocks\Bindings(); From 634e9291a214e266677c49fd57990d1239d5af01 Mon Sep 17 00:00:00 2001 From: priethor <27339341+priethor@users.noreply.github.com> Date: Fri, 14 Mar 2025 19:56:15 +0100 Subject: [PATCH 2/2] Update secure-custom-fields.php --- secure-custom-fields.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/secure-custom-fields.php b/secure-custom-fields.php index a1d444c6..4f86fa79 100644 --- a/secure-custom-fields.php +++ b/secure-custom-fields.php @@ -670,7 +670,7 @@ public function set_data( $name, $value ) { * @param string $class The instance class name. * @return object */ - public function get_instance( $class ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.classFound -- Opting not to rename due to PHP 8.0 named arugments. + public function get_instance( $class ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.classFound -- Opting not to rename due to PHP 8.0 named arguments. $name = strtolower( $class ); return isset( $this->instances[ $name ] ) ? $this->instances[ $name ] : null; } @@ -684,7 +684,7 @@ public function get_instance( $class ) { // phpcs:ignore Universal.NamingConvent * @param string $class The instance class name. * @return object */ - public function new_instance( $class ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.classFound -- Opting not to rename due to PHP 8.0 named arugments. + public function new_instance( $class ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.classFound -- Opting not to rename due to PHP 8.0 named arguments. $instance = new $class(); $name = strtolower( $class ); $this->instances[ $name ] = $instance;