Changeset 51784
- Timestamp:
- 09/09/2021 02:47:10 PM (3 years ago)
- Location:
- trunk/src/wp-includes/customize
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-background-image-setting.php
r51298 r51784 21 21 * @since 3.4.0 22 22 * 23 * @param mixed $value 23 * @param mixed $value The value to update. Not used. 24 24 */ 25 25 public function update( $value ) { -
trunk/src/wp-includes/customize/class-wp-customize-custom-css-setting.php
r48782 r51784 174 174 * 175 175 * @since 4.7.0 176 * 177 * @param string $css The input value. 176 * @since 5.9.0 Renamed `$css` to `$value` for PHP 8 named parameter support. 177 * 178 * @param string $value CSS to update. 178 179 * @return int|false The post ID or false if the value could not be saved. 179 180 */ 180 public function update( $css ) { 181 public function update( $value ) { 182 // Restores the more descriptive, specific name for use within this method. 183 $css = $value; 184 181 185 if ( empty( $css ) ) { 182 186 $css = ''; -
trunk/src/wp-includes/customize/class-wp-customize-header-image-setting.php
r51298 r51784 25 25 * @global Custom_Image_Header $custom_image_header 26 26 * 27 * @param mixed $value 27 * @param mixed $value The value to update. 28 28 */ 29 29 public function update( $value ) {
Note: See TracChangeset
for help on using the changeset viewer.