Removed 'Meta:' leader from the_meta().

git-svn-id: http://svn.automattic.com/wordpress/trunk@991 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
emc3 2004-03-24 14:41:05 +00:00
parent 867f87f41b
commit ea9cc3ff81
1 changed files with 2 additions and 2 deletions

View File

@ -473,7 +473,7 @@ function the_meta() {
global $id, $post_meta_cache;
if ($keys = get_post_custom_keys()) {
echo "<strong>Meta:</strong><ul>\n";
echo "<ul>\n";
foreach ($keys as $key) {
$values = array_map('trim',$post_meta_cache[$id][$key]);
$value = implode($values,', ');
@ -484,4 +484,4 @@ function the_meta() {
}
}
?>
?>