From e13f751e709193fe3061f1575a4652fd04fff118 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sat, 7 Oct 2006 18:54:56 +0000 Subject: [PATCH] The isset broke when we defined the var to fix E_ALL warnings, making the leading raquo appear on homepages. git-svn-id: https://develop.svn.wordpress.org/trunk@4357 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 cde0798dc5..bd3d6d47c0 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -206,7 +206,7 @@ function wp_title($sep = '»', $display = true) { } $prefix = ''; - if ( isset($title) ) + if ( !empty($title) ) $prefix = " $sep "; $title = $prefix . $title;