mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-09 09:57:38 +01:00
The isset broke when we defined the var to fix E_ALL warnings, making the leading raquo appear on homepages.
git-svn-id: http://svn.automattic.com/wordpress/trunk@4357 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5cb769ff02
commit
893c0e3b26
@ -206,7 +206,7 @@ function wp_title($sep = '»', $display = true) {
|
||||
}
|
||||
|
||||
$prefix = '';
|
||||
if ( isset($title) )
|
||||
if ( !empty($title) )
|
||||
$prefix = " $sep ";
|
||||
|
||||
$title = $prefix . $title;
|
||||
|
Loading…
Reference in New Issue
Block a user