Changeset 53450 for trunk/src/wp-admin/edit-form-comment.php
- Timestamp:
- 05/29/2022 03:33:12 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-form-comment.php
r51080 r53450 11 11 die( '-1' ); 12 12 } 13 14 /** 15 * @global WP_Comment $comment Global comment object. 16 */ 17 global $comment; 13 18 ?> 14 19 <form name="post" action="comment.php" method="post" id="post"> … … 140 145 <fieldset id='timestampdiv' class='hide-if-js'> 141 146 <legend class="screen-reader-text"><?php _e( 'Date and time' ); ?></legend> 142 <?php touch_time( ( 'editcomment' === $action ), 0 ); ?> 147 <?php 148 /** 149 * @global string $action 150 */ 151 global $action; 152 153 touch_time( ( 'editcomment' === $action ), 0 ); 154 ?> 143 155 </fieldset> 144 156 </div>
Note: See TracChangeset
for help on using the changeset viewer.