Ticket #18400: 18400.1.diff

File 18400.1.diff, 1.5 KB (added by designsimply, 19 months ago)
Line 
1Index: wp-admin/includes/meta-boxes.php
2===================================================================
3--- wp-admin/includes/meta-boxes.php    (revision 19188)
4+++ wp-admin/includes/meta-boxes.php    (working copy)
5@@ -139,7 +139,7 @@
6 
7 <input type="radio" name="visibility" id="visibility-radio-public" value="public" <?php checked( $visibility, 'public' ); ?> /> <label for="visibility-radio-public" class="selectit"><?php _e('Public'); ?></label><br />
8 <?php if ( $post_type == 'post' && current_user_can( 'edit_others_posts' ) ) : ?>
9-<span id="sticky-span"><input id="sticky" name="sticky" type="checkbox" value="sticky" <?php checked( is_sticky( $post->ID ) ); ?> tabindex="4" /> <label for="sticky" class="selectit"><?php _e( 'Stick this post to the front page' ); ?></label><br /></span>
10+<span id="sticky-span"><input id="sticky" name="sticky" type="checkbox" value="sticky" <?php checked( is_sticky( $post->ID ) ); ?> tabindex="4" /> <label for="sticky" class="selectit"><?php _e( 'Make this post sticky' ); ?></label><br /></span>
11 <?php endif; ?>
12 <input type="radio" name="visibility" id="visibility-radio-password" value="password" <?php checked( $visibility, 'password' ); ?> /> <label for="visibility-radio-password" class="selectit"><?php _e('Password protected'); ?></label><br />
13 <span id="password-span"><label for="post_password"><?php _e('Password:'); ?></label> <input type="text" name="post_password" id="post_password" value="<?php echo esc_attr($post->post_password); ?>" /><br /></span>