Changeset 1261
- Timestamp:
- 05/10/2004 09:25:23 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-comments.php
r1214 r1261 2 2 if ('wp-comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) 3 3 die ('Please do not load this page directly. Thanks!'); 4 $req = get_settings('require_name_email'); 4 5 if (($withcomments) or ($single)) { 5 6 … … 53 54 <p> 54 55 <input type="text" name="author" id="author" class="textarea" value="<?php echo $comment_author; ?>" size="28" tabindex="1" /> 55 <label for="author"><?php _e("Name"); ?></label> 56 <label for="author"><?php _e("Name"); ?></label> <?php if ($req) _e('(required)'); ?> 56 57 <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" /> 57 58 <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars($_SERVER["REQUEST_URI"]); ?>" /> … … 60 61 <p> 61 62 <input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="28" tabindex="2" /> 62 <label for="email"><?php _e("E-mail"); ?></label> 63 <label for="email"><?php _e("E-mail"); ?></label> <?php if ($req) _e('(required)'); ?> 63 64 </p> 64 65
Note: See TracChangeset
for help on using the changeset viewer.