Changes between Initial Version and Version 3 of Ticket #29193
- Timestamp:
- 08/12/2014 02:17:07 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29193
-
Property
Status
changed from
newtoclosed -
Property
Component
changed from
GeneraltoOptions, Meta APIs -
Property
Milestone
changed from
Awaiting Reviewto - Property Keywords has-patch added
-
Property
Resolution
changed from
toduplicate
-
Property
Status
changed from
-
Ticket #29193 – Description
initial v3 2 2 3 3 See wp-includes/formatting.php line 3432 - where WordPress applys the santiization filters. 4 4 {{{ 5 5 $value = apply_filters( "sanitize_option_{$option}", $value, $option ); 6 6 }}} 7 7 It passes as second arg of $option, but when registering as setting - the sanitization callback is added to this filter, but the number of accepted args is not specified when adding the filter.