diff --git a/wp-includes/class-wp-customize-setting.php b/wp-includes/class-wp-customize-setting.php index b61e397e55..33707de9f6 100644 --- a/wp-includes/class-wp-customize-setting.php +++ b/wp-includes/class-wp-customize-setting.php @@ -172,8 +172,10 @@ class WP_Customize_Setting { * the base slug of the setting name. * * @since 3.4.0 + * + * @param WP_Customize_Setting $this WP_Customize_Setting instance. */ - do_action( 'customize_save_' . $this->id_data[ 'base' ] ); + do_action( 'customize_save_' . $this->id_data[ 'base' ], $this ); $this->update( $value ); }