From ae96b8c628b381fe349cdfacd4574a23b5912062 Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 23 Jul 2008 16:44:06 +0000 Subject: [PATCH] Pass to wp_title filter. Props Viper007Bond. fixes #7382 git-svn-id: http://svn.automattic.com/wordpress/trunk@8415 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 1d070149d..e7a06c135 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -256,7 +256,7 @@ function wp_title($sep = '»', $display = true, $seplocation = '') { else $title = $prefix . $title; - $title = apply_filters('wp_title', $title, $sep); + $title = apply_filters('wp_title', $title, $sep, $seplocation); // Send it out if ( $display )