Fixed for escaped chars in link title
See http://wordpress.org/support/6/942 git-svn-id: https://develop.svn.wordpress.org/trunk@526 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
135fd02cad
commit
1705487213
@ -420,8 +420,8 @@ switch ($action) {
|
|||||||
} // end Show
|
} // end Show
|
||||||
case "popup":
|
case "popup":
|
||||||
{
|
{
|
||||||
$link_url = $HTTP_GET_VARS["linkurl"];
|
$link_url = stripslashes($HTTP_GET_VARS["linkurl"]);
|
||||||
$link_name = $HTTP_GET_VARS["name"];
|
$link_name = stripslashes($HTTP_GET_VARS["name"]);
|
||||||
//break; fall through
|
//break; fall through
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user