From 28ae8ab3dc730360a78cef50ef6382ca4f018d8d Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 23 Jul 2008 16:44:06 +0000 Subject: [PATCH] Pass to wp_title filter. Props Viper007Bond. fixes #7382 git-svn-id: https://develop.svn.wordpress.org/trunk@8415 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 1d070149dc..e7a06c1358 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 )