Opened 13 years ago
Closed 13 years ago
#21892 closed defect (bug) (fixed)
sanitize_option() adds and strip slashes to use the wrong kses functions
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.5 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Formatting | Keywords: | |
Focuses: | Cc: |
Description
sanitize_option() does this:
$value = addslashes($value); $value = wp_filter_post_kses( $value ); // calls stripslashes then addslashes $value = stripslashes($value);
When it should instead do this:
$value = wp_kses_post( $value );
Likewise for wp_filter_kses() versus wp_kses_data().
Change History (1)
Note: See
TracTickets for help on using
tickets.
In [21850]: