summaryrefslogtreecommitdiffstats
path: root/wp-includes/general-template.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-02-23 15:47:59 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-02-23 15:47:59 +0000
commit132f53ddaeb250222a4ac85ebc0bf4dd780db60e (patch)
treed3deccaeee2dd2460dc36fef83685262ef0b64fc /wp-includes/general-template.php
parent5235dfe56983b253c4ea3ec91bc436e5ffb2660a (diff)
downloadwordpress-mu-132f53ddaeb250222a4ac85ebc0bf4dd780db60e.tar.gz
wordpress-mu-132f53ddaeb250222a4ac85ebc0bf4dd780db60e.tar.xz
wordpress-mu-132f53ddaeb250222a4ac85ebc0bf4dd780db60e.zip
WP Merge to 4929
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@899 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/general-template.php')
-rw-r--r--wp-includes/general-template.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php
index 4a5d596..113c173 100644
--- a/wp-includes/general-template.php
+++ b/wp-includes/general-template.php
@@ -99,6 +99,8 @@ function get_bloginfo($show='') {
case 'atom_url':
$output = get_feed_link('atom');
break;
+ case 'comments_atom_url':
+ $output = get_feed_link('comments_atom');
case 'comments_rss2_url':
$output = get_feed_link('comments_rss2');
break;
@@ -488,7 +490,7 @@ function get_calendar($initial = true) {
ORDER BY post_date ASC
LIMIT 1");
- echo '<table id="wp-calendar">
+ echo '<table id="wp-calendar" summary="' . __('Calendar') . '">
<caption>' . $wp_locale->get_month($thismonth) . ' ' . date('Y', $unixmonth) . '</caption>
<thead>
<tr>';