From 5248b394806ad621eca5df184597e9d2287159c0 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Tue, 17 Feb 2004 04:57:31 +0000 Subject: [PATCH] Typo in previous commit. git-svn-id: https://develop.svn.wordpress.org/trunk@886 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/template-functions-post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/template-functions-post.php b/wp-includes/template-functions-post.php index 0229371666..0038f16f65 100644 --- a/wp-includes/template-functions-post.php +++ b/wp-includes/template-functions-post.php @@ -43,7 +43,7 @@ function the_title($before = '', $after = '', $echo = true) { function the_title_rss() { $title = get_the_title(); $title = apply_filters('the_title', $title); - $title = apply_filters('the_title_rss', $title): + $title = apply_filters('the_title_rss', $title); echo $title; }