Changeset 21311 for trunk/wp-admin/edit-form-comment.php
- Timestamp:
- 07/24/2012 12:15:15 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-comment.php
r20272 r21311 32 32 <tr valign="top"> 33 33 <td class="first"><?php _e( 'Name:' ); ?></td> 34 <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" tabindex="1"id="name" /></td>34 <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" id="name" /></td> 35 35 </tr> 36 36 <tr valign="top"> … … 43 43 } 44 44 ?></td> 45 <td><input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" tabindex="2"id="email" /></td>45 <td><input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" id="email" /></td> 46 46 </tr> 47 47 <tr valign="top"> … … 54 54 _e( 'URL:' ); 55 55 } ?></td> 56 <td><input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo esc_attr($comment->comment_author_url); ?>" tabindex="3"/></td>56 <td><input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo esc_attr($comment->comment_author_url); ?>" /></td> 57 57 </tr> 58 58 </tbody> … … 99 99 $date = date_i18n( $datef, strtotime( $comment->comment_date ) ); 100 100 ?> 101 <span id="timestamp"><?php printf($stamp, $date); ?></span> <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a>102 <div id='timestampdiv' class='hide-if-js'><?php touch_time(('editcomment' == $action), 0 , 5); ?></div>101 <span id="timestamp"><?php printf($stamp, $date); ?></span> <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><?php _e('Edit') ?></a> 102 <div id='timestampdiv' class='hide-if-js'><?php touch_time(('editcomment' == $action), 0); ?></div> 103 103 </div> 104 104 </div> <!-- misc actions --> … … 111 111 </div> 112 112 <div id="publishing-action"> 113 <?php submit_button( __( 'Update' ), 'primary', 'save', false , array( 'tabindex' => '4' )); ?>113 <?php submit_button( __( 'Update' ), 'primary', 'save', false ); ?> 114 114 </div> 115 115 <div class="clear"></div>
Note: See TracChangeset
for help on using the changeset viewer.