From c687138247e4c05945892eda2ac5350457d8928d Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sat, 24 Apr 2004 23:31:34 +0000 Subject: [PATCH] Fixed a problem with using bloginfo(). git-svn-id: https://develop.svn.wordpress.org/trunk@1157 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/template-functions-general.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/template-functions-general.php b/wp-includes/template-functions-general.php index c458be622d..a6abc1214c 100644 --- a/wp-includes/template-functions-general.php +++ b/wp-includes/template-functions-general.php @@ -32,7 +32,8 @@ function get_bloginfo($show='') { switch($show) { case 'url': - $output = get_settings('siteurl') .'/'. get_settings('blogfilename'); + case 'siteurl': + $output = get_settings('siteurl'); break; case 'description': $output = get_settings('blogdescription');