Skip to content

Commit

Permalink
Fixed a problem with using bloginfo().
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.automattic.com/wordpress/trunk@1157 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
saxmatt committed Apr 24, 2004
1 parent d077815 commit 2ae8704
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wp-includes/template-functions-general.php
Expand Up @@ -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');
Expand Down

0 comments on commit 2ae8704

Please sign in to comment.