Skip to:
Content

bbPress.org

Changeset 6287


Ignore:
Timestamp:
02/08/2017 12:34:33 AM (9 years ago)
Author:
johnjamesjacoby
Message:

Topics: Fix list-table arguments.

  • singular/plural are not labels
  • Set ajax to false since this does not use ajax

Props mordauk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/classes/class-bbp-topic-replies-list-table.php

    r6284 r6287  
    3535    public function __construct( $args = array() ) {
    3636        $args = array(
    37             'singular' => esc_html_x( 'Reply', 'noun', 'bbpress' ),
    38             'plural'   => esc_html__( 'Replies', 'bbpress' ),
    39             'ajax'     => true
     37            'singular' => 'reply',
     38            'plural'   => 'replies',
     39            'ajax'     => false
    4040        );
    4141        parent::__construct( $args );
Note: See TracChangeset for help on using the changeset viewer.