Make WordPress Core


Ignore:
Timestamp:
05/08/2008 07:19:58 PM (18 years ago)
Author:
ryan
Message:

Use array calling style. see #6647

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/dashboard.php

    r7852 r7911  
    270270    $lambda = create_function( '', 'return 5;' );
    271271    add_filter( 'option_posts_per_rss', $lambda ); // hack - comments query doesn't accept per_page parameter
    272     $comments_query = new WP_Query('feed=rss2&withcomments=1');
     272    $comments_query = new WP_Query(array('feed' => 'rss2', 'withcomments' => 1));
    273273    remove_filter( 'option_posts_per_rss', $lambda );
    274274
Note: See TracChangeset for help on using the changeset viewer.