Changeset 57302
- Timestamp:
- 01/17/2024 09:07:15 AM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r57263 r57302 4847 4847 * 4848 4848 * @param string $option The name of the option. 4849 * @param string$value The unsanitized value.4850 * @return stringSanitized value.4849 * @param mixed $value The unsanitized value. 4850 * @return mixed Sanitized value. 4851 4851 */ 4852 4852 function sanitize_option( $option, $value ) { … … 5120 5120 * @since 4.3.0 Added the `$original_value` parameter. 5121 5121 * 5122 * @param string$value The sanitized option value.5122 * @param mixed $value The sanitized option value. 5123 5123 * @param string $option The option name. 5124 * @param string$original_value The original value passed to the function.5124 * @param mixed $original_value The original value passed to the function. 5125 5125 */ 5126 5126 return apply_filters( "sanitize_option_{$option}", $value, $option, $original_value );
Note: See TracChangeset
for help on using the changeset viewer.