git-svn-id: http://svn.automattic.com/wordpress/trunk@419 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2003-10-07 16:21:24 +00:00
parent ff22d49212
commit e892d3eb12

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'];