summaryrefslogtreecommitdiffstats
path: root/wp-content
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-06-24 17:36:46 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-06-24 17:36:46 +0000
commit71760e5c9b47ec70bb9acf03138653317230bc5e (patch)
tree7090535ef3bd2b42cfcd6669cdecc4da5ae259ab /wp-content
parent1a657f56fdbef804018793a41ec5b076cba604e7 (diff)
downloadwordpress-mu-71760e5c9b47ec70bb9acf03138653317230bc5e.tar.gz
wordpress-mu-71760e5c9b47ec70bb9acf03138653317230bc5e.tar.xz
wordpress-mu-71760e5c9b47ec70bb9acf03138653317230bc5e.zip
Update the "home" theme too
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1338 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-content')
-rw-r--r--wp-content/themes/home/comments.php4
-rw-r--r--wp-content/themes/home/single.php2
-rw-r--r--wp-content/themes/home/style.css4
3 files changed, 7 insertions, 3 deletions
diff --git a/wp-content/themes/home/comments.php b/wp-content/themes/home/comments.php
index 08b1be1..ec2f6c4 100644
--- a/wp-content/themes/home/comments.php
+++ b/wp-content/themes/home/comments.php
@@ -78,10 +78,10 @@
<?php else : ?>
-<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
+<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="author"><small>Name <?php if ($req) echo "(required)"; ?></small></label></p>
-<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
+<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label></p>
<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
diff --git a/wp-content/themes/home/single.php b/wp-content/themes/home/single.php
index 313b52e..b3bf786 100644
--- a/wp-content/themes/home/single.php
+++ b/wp-content/themes/home/single.php
@@ -45,7 +45,7 @@
// Neither Comments, nor Pings are open ?>
Both comments and pings are currently closed.
- <?php } edit_post_link('Edit this entry.','',''); ?>
+ <?php } edit_post_link('Edit this entry','','.'); ?>
</small>
</p>
diff --git a/wp-content/themes/home/style.css b/wp-content/themes/home/style.css
index 3641f37..b927278 100644
--- a/wp-content/themes/home/style.css
+++ b/wp-content/themes/home/style.css
@@ -616,6 +616,10 @@ blockquote cite {
text-align: center;
}
+.hidden {
+ display: none;
+ }
+
hr {
display: none;
}