Make WordPress Core

Ticket #27345: 27345-2.diff

File 27345-2.diff, 724 bytes (added by bravokeyl, 11 years ago)

change of ' page_has_children ' to ' page-has-children '

  • class-wp-posts-list-table.php

     
    544544                $alternate = 'alternate' == $alternate ? '' : 'alternate';
    545545                $classes = $alternate . ' iedit author-' . ( get_current_user_id() == $post->post_author ? 'self' : 'other' );
    546546
     547                $args = array( 'post_parent' => $post->ID ,
     548                                           'post_type'   => 'page'
     549                                          );
     550                $page_children = get_children($args);
     551                if(count($page_children)>0){
     552                        $classes .= ' page-has-children';
     553                }
     554
    547555                $lock_holder = wp_check_post_lock( $post->ID );
    548556                if ( $lock_holder ) {
    549557                        $classes .= ' wp-locked';