Make WordPress Core

Ticket #23697: 23697-8.patch

File 23697-8.patch, 5.1 KB (added by azaozz, 11 years ago)
  • wp-admin/includes/misc.php

     
    569569function wp_check_locked_posts( $response, $data, $screen_id ) {
    570570        $checked = array();
    571571
    572         if ( 'edit-post' == $screen_id && array_key_exists( 'wp-check-locked', $data ) && is_array( $data['wp-check-locked'] ) ) {
    573                 foreach ( $data['wp-check-locked'] as $key ) {
    574                         $post_id = (int) substr( $key, 5 );
     572        if ( array_key_exists( 'wp-check-locked-posts', $data ) && is_array( $data['wp-check-locked-posts'] ) ) {
     573                foreach ( $data['wp-check-locked-posts'] as $key ) {
     574                        if ( ! $post_id = absint( substr( $key, 5 ) ) )
     575                                continue;
    575576
    576                         if ( current_user_can( 'edit_post', $post_id ) && ( $user_id = wp_check_post_lock( $post_id ) ) && ( $user = get_userdata( $user_id ) ) ) {
     577                        if ( ( $user_id = wp_check_post_lock( $post_id ) ) && ( $user = get_userdata( $user_id ) ) && current_user_can( 'edit_post', $post_id ) ) {
    577578                                $send = array( 'text' => sprintf( __( '%s is currently editing' ), $user->display_name ) );
    578579
    579580                                if ( ( $avatar = get_avatar( $user->ID, 18 ) ) && preg_match( "|src='([^']+)'|", $avatar, $matches ) )
     
    585586        }
    586587
    587588        if ( ! empty( $checked ) )
    588                 $response['wp-check-locked'] = $checked;
     589                $response['wp-check-locked-posts'] = $checked;
    589590
    590591        return $response;
    591592}
     
    597598 * @since 3.6
    598599 */
    599600function wp_refresh_post_lock( $response, $data, $screen_id ) {
    600         if ( 'post' == $screen_id && array_key_exists( 'wp-refresh-post-lock', $data ) ) {
     601        if ( array_key_exists( 'wp-refresh-post-lock', $data ) ) {
    601602                $received = $data['wp-refresh-post-lock'];
    602603                $send = array();
    603604
    604                 if ( !$post_id = absint( $received['post_id'] ) )
     605                if ( ! $post_id = absint( $received['post_id'] ) )
    605606                        return $response;
    606607
    607                 if ( !current_user_can('edit_post', $post_id) )
     608                if ( ! current_user_can('edit_post', $post_id) )
    608609                        return $response;
    609610
    610611                if ( ( $user_id = wp_check_post_lock( $post_id ) ) && ( $user = get_userdata( $user_id ) ) ) {
  • wp-admin/includes/post.php

     
    12021202                $locked = false;
    12031203        }
    12041204
     1205        if ( $locked && ( $sendback = wp_get_referer() ) &&
     1206                false === strpos( $sendback, 'post.php' ) && false === strpos( $sendback, 'post-new.php' ) ) {
     1207
     1208                $sendback_text = __('Go back');
     1209        } else {
     1210                $sendback = admin_url( 'edit.php' );
     1211
     1212                if ( 'post' != $post->post_type && ( $post_type_object = get_post_type_object( $post->post_type ) ) ) {
     1213                        $sendback .= '?post_type=' . $post->post_type;
     1214                        $sendback_text = sprintf( _x('Go to All %s', 'post type general name: Posts, Pages, etc.'), $post_type_object->labels->name );
     1215                } else {
     1216                        $sendback_text = __('Go to All Posts');
     1217                }
     1218        }
     1219
    12051220        $hidden = $locked ? '' : ' hidden';
    12061221
    12071222        ?>
     
    12291244                <p class="currently-editing wp-tab-first" tabindex="0"><?php esc_html_e( sprintf( __( 'This content is currently locked. If you take over, %s will be blocked from continuing to edit.' ), $user->display_name ) ); ?></p>
    12301245                <?php do_action( 'post_lock_text', $post ); ?>
    12311246                <p>
    1232                 <a class="button" href="<?php echo esc_url( wp_get_referer() ); ?>"><?php _e('Go back'); ?></a>
     1247                <a class="button" href="<?php echo esc_url( $sendback ); ?>"><?php echo $sendback_text; ?></a>
    12331248                <a class="button<?php echo $tab_last; ?>" href="<?php echo esc_url( $preview_link ); ?>"><?php _e('Preview'); ?></a>
    12341249                <?php
    12351250
     
    12541269                        <span class="locked-saved hidden"><?php _e('Your latest changes were saved as a revision.'); ?></span>
    12551270                        </p>
    12561271                        <?php do_action( 'post_lock_text', $post ); ?>
    1257                         <p><a class="button button-primary wp-tab-last" href="<?php echo esc_url( admin_url('edit.php') ); ?>"><?php _e('Go to All Posts'); ?></a></p>
     1272                        <p><a class="button button-primary wp-tab-last" href="<?php echo esc_url( $sendback ); ?>"><?php echo $sendback_text; ?></a></p>
    12581273                </div>
    12591274                <?php
    12601275        }
  • wp-admin/js/inline-edit-post.js

     
    293293$( document ).ready( function(){ inlineEditPost.init(); } );
    294294
    295295// Show/hide locks on posts
    296 $( document ).on( 'heartbeat-tick.wp-check-locked', function( e, data ) {
    297         var locked = data['wp-check-locked'] || {};
     296$( document ).on( 'heartbeat-tick.wp-check-locked-posts', function( e, data ) {
     297        var locked = data['wp-check-locked-posts'] || {};
    298298
    299299        $('#the-list tr').each( function(i, el) {
    300300                var key = el.id, row = $(el), lock_data, avatar;
     
    315315                        row.find('.column-title .locked-avatar').empty();
    316316                }
    317317        });
    318 }).on( 'heartbeat-send.wp-check-locked', function( e, data ) {
     318}).on( 'heartbeat-send.wp-check-locked-posts', function( e, data ) {
    319319        var check = [];
    320320
    321321        $('#the-list tr').each( function(i, el) {
     
    324324        });
    325325
    326326        if ( check.length )
    327                 data['wp-check-locked'] = check;
     327                data['wp-check-locked-posts'] = check;
    328328});
    329329
    330330}(jQuery));