Avoid saving slashed data in XML-RPC's wp.setOptions.
props danielbachhuber. fixes #22936. Built from https://develop.svn.wordpress.org/trunk@27551 git-svn-id: http://core.svn.wordpress.org/trunk@27394 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
944151ec8e
commit
eb19a09f5b
|
@ -3244,7 +3244,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
if ( $this->blog_options[$o_name]['readonly'] == true )
|
||||
continue;
|
||||
|
||||
update_option( $this->blog_options[$o_name]['option'], $o_value );
|
||||
update_option( $this->blog_options[$o_name]['option'], wp_unslash( $o_value ) );
|
||||
}
|
||||
|
||||
//Now return the updated values
|
||||
|
|
Loading…
Reference in New Issue