From 4d37021dd509e647e8e4844e1a07c72a3b68763e 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: https://develop.svn.wordpress.org/trunk@1560 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 413a2bf40b..4f70f51197 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);