[wpmu-trac] [WordPress MU Trac] #1067: Text widget adds extra slashes when edited by a non site admin
WordPress MU Trac
wpmu-trac at lists.automattic.com
Fri Aug 7 11:42:51 UTC 2009
#1067: Text widget adds extra slashes when edited by a non site admin
----------------------------+-----------------------------------------------
Reporter: DeannaS | Owner: donncha
Type: enhancement | Status: new
Priority: normal | Milestone: WPMU 2.0
Component: Administration | Version: 2.8.2
Severity: normal | Keywords:
----------------------------+-----------------------------------------------
Changes (by pacesolutions):
* cc: pacesolutions (added)
* priority: high => normal
* type: defect => enhancement
* milestone: => WPMU 2.0
Comment:
The above patch does not work, but if you modify the function
wp_filter_post_kses() it seems to solve the problem.
In wp-includes/kses.php
Line: 1065
'''Original Code:'''
function wp_filter_post_kses($data) {
global $allowedposttags;
return addslashes ( wp_kses(stripslashes( $data ), $allowedposttags) );
}
'''Change To:'''
function wp_filter_post_kses($data) {
global $allowedposttags;
return wp_kses(stripslashes( $data ), $allowedposttags);
}
Just remove addslashes() function from the original function.
--
Ticket URL: <http://trac.mu.wordpress.org/ticket/1067#comment:11>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser
More information about the wpmu-trac
mailing list