Skip to:
Content

BuddyPress.org

Ticket #5068: 5068.diff

File 5068.diff, 980 bytes (added by imath, 11 years ago)
  • bp-activity/bp-activity-admin.php

     
    940940                        'ajax'     => false,
    941941                        'plural'   => 'activities',
    942942                        'singular' => 'activity',
     943                        'screen'   => get_current_screen()
    943944                ) );
    944945        }
    945946
     
    949950         * @since BuddyPress (1.6)
    950951         */
    951952        function prepare_items() {
    952                 $screen = get_current_screen();
    953953
    954954                // Option defaults
    955955                $filter           = array();
     
    962962                $page = $this->get_pagenum();
    963963
    964964                // Set per page from the screen options
    965                 $per_page = $this->get_items_per_page( str_replace( '-', '_', "{$screen->id}_per_page" ) );
     965                $per_page = $this->get_items_per_page( str_replace( '-', '_', "{$this->screen->id}_per_page" ) );
    966966
    967967                // Check if we're on the "Spam" view
    968968                if ( !empty( $_REQUEST['activity_status'] ) && 'spam' == $_REQUEST['activity_status'] ) {