diff --git a/src/wp-includes/class-wp-customize-setting.php b/src/wp-includes/class-wp-customize-setting.php
index 4bca442..b651813 100644
a
|
b
|
class WP_Customize_Setting { |
131 | 131 | * |
132 | 132 | * @since 3.4.0 |
133 | 133 | */ |
134 | | do_action( 'customize_preview_' . $this->id ); |
| 134 | do_action( 'customize_preview_' . $this->id, $this ); |
135 | 135 | } |
136 | 136 | } |
137 | 137 | |
… |
… |
class WP_Customize_Setting { |
248 | 248 | * |
249 | 249 | * @param mixed $value Value of the setting. |
250 | 250 | */ |
251 | | return do_action( 'customize_update_' . $this->type, $value ); |
| 251 | return do_action( 'customize_update_' . $this->type, $value, $this ); |
252 | 252 | } |
253 | 253 | } |
254 | 254 | |