Changeset 1338
- Timestamp:
- 06/24/08 17:36:46 (2 months ago)
- Files:
-
- trunk/wp-content/themes/home/comments.php (modified) (1 diff)
- trunk/wp-content/themes/home/single.php (modified) (1 diff)
- trunk/wp-content/themes/home/style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-content/themes/home/comments.php
r1238 r1338 79 79 <?php else : ?> 80 80 81 <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />81 <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> /> 82 82 <label for="author"><small>Name <?php if ($req) echo "(required)"; ?></small></label></p> 83 83 84 <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />84 <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'"; ?> /> 85 85 <label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label></p> 86 86 trunk/wp-content/themes/home/single.php
r1238 r1338 46 46 Both comments and pings are currently closed. 47 47 48 <?php } edit_post_link('Edit this entry .','',''); ?>48 <?php } edit_post_link('Edit this entry','','.'); ?> 49 49 50 50 </small> trunk/wp-content/themes/home/style.css
r1238 r1338 617 617 } 618 618 619 .hidden { 620 display: none; 621 } 622 619 623 hr { 620 624 display: none;
