Beautify. Fixes #5561 props fitztrev.

git-svn-id: http://svn.automattic.com/wordpress/trunk@6536 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2008-01-02 18:21:19 +00:00
parent ee80716944
commit 28e6daf192
1 changed files with 5 additions and 5 deletions

View File

@ -863,12 +863,12 @@ function wp_footer() {
}
function rsd_link() {
echo ' <link rel="EditURI" type="application/rsd+xml" title="RSD" href="' . get_bloginfo('wpurl') . "/xmlrpc.php?rsd\" />\n";
echo '<link rel="EditURI" type="application/rsd+xml" title="RSD" href="' . get_bloginfo('wpurl') . "/xmlrpc.php?rsd\" />\n";
}
function wlwmanifest_link() {
echo ' <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="'
. get_bloginfo('wpurl') . '/wp-includes/wlwmanifest.xml" /> ';
echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="'
. get_bloginfo('wpurl') . '/wp-includes/wlwmanifest.xml" /> ' . "\n";
}
function noindex() {
@ -1141,10 +1141,10 @@ function the_generator ( $type ) {
function get_the_generator ( $type ) {
switch ($type) {
case 'html':
$gen = '<meta name="generator" content="WordPress/' . get_bloginfo( 'version' ) . '">';
$gen = '<meta name="generator" content="WordPress/' . get_bloginfo( 'version' ) . '">' . "\n";
break;
case 'xhtml':
$gen = '<meta name="generator" content="WordPress/' . get_bloginfo( 'version' ) . '" />';
$gen = '<meta name="generator" content="WordPress/' . get_bloginfo( 'version' ) . '" />' . "\n";
break;
case 'atom':
$gen = '<generator uri="http://wordpress.org/" version="' . get_bloginfo_rss( 'version' ) . '">WordPress</generator>';