| 1 | 184,185c184,185
|
|---|
| 2 | < $status_links['mine'] = "<a href='edit.php?post_type=$post_type&author=$current_user_id'$class>" . sprintf( _nx( 'Mine <span class="count">(%s)</span>', 'Mine <span class="count">(%s)</span>', $this->user_posts_count, 'posts' ), number_format_i18n( $this->user_posts_count ) ) . '</a>';
|
|---|
| 3 | < $allposts = '&all_posts=1';
|
|---|
| 4 | ---
|
|---|
| 5 | > $status_links['mine'] = "<a href='" . esc_attr( "edit.php?post_type=$post_type&author=$current_user_id" ) . "'$class>" . sprintf( _nx( 'Mine <span class="count">(%s)</span>', 'Mine <span class="count">(%s)</span>', $this->user_posts_count, 'posts' ), number_format_i18n( $this->user_posts_count ) ) . '</a>';
|
|---|
| 6 | > $allposts = esc_attr( '&all_posts=1' );
|
|---|