Fixed for escaped chars in link title
See http://wordpress.org/support/6/942 git-svn-id: http://svn.automattic.com/wordpress/trunk@526 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
64d73e5d87
commit
e1940bab18
|
@ -420,8 +420,8 @@ switch ($action) {
|
|||
} // end Show
|
||||
case "popup":
|
||||
{
|
||||
$link_url = $HTTP_GET_VARS["linkurl"];
|
||||
$link_name = $HTTP_GET_VARS["name"];
|
||||
$link_url = stripslashes($HTTP_GET_VARS["linkurl"]);
|
||||
$link_name = stripslashes($HTTP_GET_VARS["name"]);
|
||||
//break; fall through
|
||||
}
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue