git-svn-id: https://develop.svn.wordpress.org/trunk@419 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2003-10-07 16:21:24 +00:00
parent cfd681725d
commit db3adc49c0
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ if (!empty($HTTP_GET_VARS['tb_id'])) {
// trackback is done by a POST
$request_array = 'HTTP_POST_VARS';
$tb_id = explode('/', $HTTP_SERVER_VARS['REQUEST_URI']);
$tb_id = inval($tb_id[count($tb_id)-1]);
$tb_id = intval($tb_id[count($tb_id)-1]);
$tb_url = $HTTP_POST_VARS['url'];
$title = $HTTP_POST_VARS['title'];
$excerpt = $HTTP_POST_VARS['excerpt'];