Remove some dead variable assignments.

See #27882.


Built from https://develop.svn.wordpress.org/trunk@28629


git-svn-id: http://core.svn.wordpress.org/trunk@28449 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2014-05-30 16:59:14 +00:00
parent cb0fc9c64b
commit c403768fa2
5 changed files with 5 additions and 9 deletions

View File

@ -519,11 +519,11 @@ class WP_Comments_List_Table extends WP_List_Table {
}
}
public function column_date( $comment ) {
public function column_date() {
return get_comment_date( __( 'Y/m/d \a\t g:ia' ) );
}
public function column_response( $comment ) {
public function column_response() {
$post = get_post();
if ( isset( $this->pending_count[$post->ID] ) ) {

View File

@ -196,10 +196,9 @@ class WP_Importer {
/**
* Bump up the request timeout for http requests
*
* @param int $val
* @return int
*/
public function bump_request_timeout( $val ) {
public function bump_request_timeout() {
return 60;
}

View File

@ -269,10 +269,9 @@ class WP_Posts_List_Table extends WP_List_Table {
/* translators: manage posts column name */
$posts_columns['title'] = _x( 'Title', 'column name' );
if ( post_type_supports( $post_type, 'author' ) )
if ( post_type_supports( $post_type, 'author' ) ) {
$posts_columns['author'] = __( 'Author' );
$taxonomies = array();
}
$taxonomies = get_object_taxonomies( $post_type, 'objects' );
$taxonomies = wp_filter_object_list( $taxonomies, array( 'show_admin_column' => true ), 'and', 'name' );

View File

@ -189,7 +189,6 @@ class WP_Terms_List_Table extends WP_List_Table {
foreach ( $terms as $term ) {
$this->single_row( $term );
}
$count = $number; // Only displaying a single page.
}
}

View File

@ -1919,7 +1919,6 @@ class WP_Automatic_Updater {
* @param object $item The update offer.
*/
protected function send_core_update_notification_email( $item ) {
$notify = true;
$notified = get_site_option( 'auto_core_update_notified' );
// Don't notify if we've already notified the same email address of the same version.