[wpmu-trac] [WordPress MU Trac] #1097: Backslash added in front of apostrophe's in the blog name via wpmu-edit.php
WordPress MU Trac
wpmu-trac at lists.automattic.com
Mon Aug 24 18:25:14 UTC 2009
#1097: Backslash added in front of apostrophe's in the blog name via wpmu-edit.php
------------------------+---------------------------------------------------
Reporter: deannas | Owner: somebody
Type: defect | Status: new
Priority: normal | Milestone:
Component: component1 | Version: 2.8.2
Severity: normal | Keywords:
------------------------+---------------------------------------------------
Tested in Version 2.8.4a and trunk r 1937
If you update any options via site admin -> blogs -> edit (/wp-admin/wpmu-
blogs.php?action=editblog&id=n) and the blog name has an apostrophe, it
ends up being stored with an escaping slash before it. It can be "fixed"
by editing the blog name via settings - general. I can fix the behavior by
changing line 199-201 on wp-admin/wpmu-edit.php to the following:
{{{
foreach ( (array) $_POST['option'] as $key => $val ) {
if ($key == 'blogname') { $val = stripslashes_deep($val); }
if( $c == $count )
}}}
I tried just stripslashes_deep on all option values. That appeared to
work, but I'm not sure if there would be any unforseen repercussions on
stripping slashes on all options.
--
Ticket URL: <http://trac.mu.wordpress.org/ticket/1097>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser
More information about the wpmu-trac
mailing list