Mostly whitespace issues.

git-svn-id: https://develop.svn.wordpress.org/trunk@334 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2003-08-24 16:46:24 +00:00
parent 81fc93c5b5
commit deb09317dd

View File

@ -111,11 +111,11 @@ function single_month_title($prefix = '', $display = true ) {
/* link navigation hack by Orien http://icecode.com/ */
function get_archives_link($url, $text, $format) {
if ('link' == $format) {
return '<link rel="archives" title="'.$text.'" href="'.$url.'" />'."\n";
return "\t".'<link rel="archives" title="'.$text.'" href="'.$url.'" />'."\n";
} else if ('option' == $format) {
return '<option value="'.$url.'">'.$text.'</option>'."\n";
} else { // 'html'
return '<li><a href="'.$url.'" title="'.$text.'">'.$text.'</a></li>'."\n";
return "\t".'<li><a href="'.$url.'" title="'.$text.'">'.$text.'</a></li>'."\n";
}
}