Changeset 10834 for trunk/wp-admin/edit-form-comment.php
- Timestamp:
- 03/25/2009 02:29:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-comment.php
r10680 r10834 70 70 <div id="major-publishing-actions"> 71 71 <div id="delete-action"> 72 < a class='submitdelete deletion' href='<?php echo wp_nonce_url("comment.php?action=deletecomment&c=$comment->comment_ID&_wp_original_http_referer=" . wp_get_referer(), 'delete-comment_' . $comment->comment_ID) . "' onclick=\"if ( confirm('" . js_escape(__("You are about to delete this comment. \n 'Cancel' to stop, 'OK' to delete.")) . "') ) { return true;}return false;\">" . __('Delete'); ?></a>72 <?php echo "<a class='submitdelete deletion' href='" . wp_nonce_url("comment.php?action=deletecomment&c=$comment->comment_ID&_wp_original_http_referer=" . wp_get_referer(), 'delete-comment_' . $comment->comment_ID) . "' onclick=\"if ( confirm('" . js_escape(__("You are about to delete this comment. \n 'Cancel' to stop, 'OK' to delete.")) . "') ){return true;}return false;\">" . __('Delete') . "</a>\n"; ?> 73 73 </div> 74 74 <div id="publishing-action"> … … 82 82 </div> 83 83 84 <div id="post-body" class="has-sidebar"> 85 <div id="post-body-content" class="has-sidebar-content"> 86 84 <div id="post-body"> 87 85 <div id="namediv" class="stuffbox"> 88 86 <h3><label for="name"><?php _e( 'Author' ) ?></label></h3> … … 139 137 </div> 140 138 </div> 141 </div>142 139 </form> 143 140
Note: See TracChangeset
for help on using the changeset viewer.