Changeset 28381
- Timestamp:
- 05/13/2014 04:39:17 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme-compat/comments-popup.php
r27369 r28381 42 42 // this line is WordPress' motor, do not delete it. 43 43 $commenter = wp_get_current_commenter(); 44 extract($commenter);45 44 $comments = get_approved_comments($id); 46 45 $post = get_post($id); … … 72 71 <?php else : ?> 73 72 <p> 74 <input type="text" name="author" id="author" class="textarea" value="<?php echo esc_attr( $comment_author); ?>" size="28" tabindex="1" />73 <input type="text" name="author" id="author" class="textarea" value="<?php echo esc_attr( $commenter['comment_author'] ); ?>" size="28" tabindex="1" /> 75 74 <label for="author"><?php _e('Name'); ?></label> 76 75 </p> 77 76 78 77 <p> 79 <input type="text" name="email" id="email" value="<?php echo esc_attr( $comment_author_email); ?>" size="28" tabindex="2" />78 <input type="text" name="email" id="email" value="<?php echo esc_attr( $commenter['comment_author_email'] ); ?>" size="28" tabindex="2" /> 80 79 <label for="email"><?php _e('E-mail'); ?></label> 81 80 </p> 82 81 83 82 <p> 84 <input type="text" name="url" id="url" value="<?php echo esc_attr( $comment_author_url); ?>" size="28" tabindex="3" />83 <input type="text" name="url" id="url" value="<?php echo esc_attr( $commenter['comment_author_url'] ); ?>" size="28" tabindex="3" /> 85 84 <label for="url"><?php _e('<abbr title="Universal Resource Locator">URL</abbr>'); ?></label> 86 85 </p>
Note: See TracChangeset
for help on using the changeset viewer.