From 4ff88b4c3e1710ae9be8e9d24dad4ae9680ccec6 Mon Sep 17 00:00:00 2001 From: michelvaldrighi Date: Wed, 25 Aug 2004 14:22:39 +0000 Subject: [PATCH] whoops, typo in trackback_url_list git-svn-id: http://svn.automattic.com/wordpress/trunk@1560 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions-post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions-post.php b/wp-includes/functions-post.php index 413a2bf40..4f70f5119 100644 --- a/wp-includes/functions-post.php +++ b/wp-includes/functions-post.php @@ -343,7 +343,7 @@ function trackback_url_list($tb_list, $post_id) { $excerpt = strip_tags($post_excerpt?$post_excerpt:$post_content); if (strlen($excerpt) > 255) { - $exerpt = substr($excerpt,0,252) . '...'; + $excerpt = substr($excerpt,0,252) . '...'; } $trackback_urls = explode(',', $tb_list);