Changes between Initial Version and Version 3 of Ticket #29193
- Timestamp:
- 08/12/2014 02:17:07 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29193
-
Property
Status
changed from
new
toclosed
-
Property
Component
changed from
General
toOptions, Meta APIs
-
Property
Milestone
changed from
Awaiting Review
to - Property Keywords has-patch added
-
Property
Resolution
changed from
to
duplicate
-
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.