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:
mikelittle 2003-11-06 00:00:45 +00:00
parent 64d73e5d87
commit e1940bab18
1 changed files with 2 additions and 2 deletions

View File

@ -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: