Make WordPress Core

Ticket #16661: 16661.3.patch

File 16661.3.patch, 18.7 KB (added by hakre, 14 years ago)

Merged the two .patch files about both functions

  • wp-admin/includes/deprecated.php

     
    502502                        $this->query_where .= " AND $wpdb->users.ID = $wpdb->usermeta.user_id AND meta_key = '{$level_key}'";
    503503                }
    504504
    505                 do_action_ref_array( 'pre_user_search', array( &$this ) );
     505                do_action( 'pre_user_search', $this );
    506506        }
    507507
    508508        /**
  • wp-admin/includes/user.php

     
    176176        }
    177177
    178178        // Allow plugins to return their own errors.
    179         do_action_ref_array('user_profile_update_errors', array ( &$errors, $update, &$user ) );
     179        do_action('user_profile_update_errors', $errors, $update, $user );
    180180
    181181        if ( $errors->get_error_codes() )
    182182                return $errors;
  • wp-includes/admin-bar.php

     
    5757
    5858        $wp_admin_bar->load_user_locale_translations();
    5959
    60         do_action_ref_array( 'admin_bar_menu', array( &$wp_admin_bar ) );
     60        do_action( 'admin_bar_menu', $wp_admin_bar );
    6161
    6262        do_action( 'wp_before_admin_bar_render' );
    6363
  • wp-includes/class-wp.php

     
    298298
    299299                $this->query_vars = apply_filters('request', $this->query_vars);
    300300
    301                 do_action_ref_array('parse_request', array(&$this));
     301                do_action( 'parse_request', $this );
    302302        }
    303303
    304304        /**
     
    373373                if ( $exit_required )
    374374                        exit();
    375375
    376                 do_action_ref_array('send_headers', array(&$this));
     376                do_action( 'send_headers', $this );
    377377        }
    378378
    379379        /**
     
    501501                $this->query_posts();
    502502                $this->handle_404();
    503503                $this->register_globals();
    504                 do_action_ref_array('wp', array(&$this));
     504                do_action( 'wp', $this );
    505505        }
    506506
    507507        /**
  • wp-includes/class.wp-scripts.php

     
    3131        var $default_dirs;
    3232
    3333        function __construct() {
    34                 do_action_ref_array( 'wp_default_scripts', array(&$this) );
     34                do_action( 'wp_default_scripts', $this );
    3535        }
    3636
    3737        /**
  • wp-includes/class.wp-styles.php

     
    2828        var $default_dirs;
    2929
    3030        function __construct() {
    31                 do_action_ref_array( 'wp_default_styles', array(&$this) );
     31                do_action( 'wp_default_styles', $this );
    3232        }
    3333
    3434        function do_item( $handle ) {
  • wp-includes/comment.php

     
    221221                );
    222222
    223223                $this->query_vars = wp_parse_args( $query_vars, $defaults );
    224                 do_action_ref_array( 'pre_get_comments', array( &$this ) );
     224                do_action( 'pre_get_comments', $this );
    225225                extract( $this->query_vars, EXTR_SKIP );
    226226
    227227                // $args can be whatever, only use the args defined in defaults to compute the key
     
    320320                        $where .= $this->get_search_sql( $search, array( 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_author_IP', 'comment_content' ) );
    321321
    322322                $pieces = array( 'fields', 'join', 'where', 'orderby', 'order', 'limits' );
    323                 $clauses = apply_filters_ref_array( 'comments_clauses', array( compact( $pieces ), &$this ) );
     323                $clauses = apply_filters( 'comments_clauses', compact( $pieces ), $this );
    324324                foreach ( $pieces as $piece )
    325325                        $$piece = isset( $clauses[ $piece ] ) ? $clauses[ $piece ] : '';
    326326
     
    330330                        return $wpdb->get_var( $query );
    331331
    332332                $comments = $wpdb->get_results( $query );
    333                 $comments = apply_filters_ref_array( 'the_comments', array( $comments, &$this ) );
     333                $comments = apply_filters( 'the_comments', $comments, $this );
    334334
    335335                wp_cache_add( $cache_key, $comments, 'comment' );
    336336
  • wp-includes/feed.php

     
    535535        $feed->set_cache_class('WP_Feed_Cache');
    536536        $feed->set_file_class('WP_SimplePie_File');
    537537        $feed->set_cache_duration(apply_filters('wp_feed_cache_transient_lifetime', 43200, $url));
    538         do_action_ref_array( 'wp_feed_options', array( &$feed, $url ) );
     538        do_action( 'wp_feed_options', $feed, $url );
    539539        $feed->init();
    540540        $feed->handle_content_type();
    541541
  • wp-includes/meta.php

     
    442442                $where .= $wpdb->prepare( " AND CAST($alias.meta_value AS {$meta_type}) {$meta_compare} {$meta_compare_string}", $meta_value );
    443443        }
    444444
    445         return apply_filters_ref_array( 'get_meta_sql', array( compact( 'join', 'where' ), $meta_query, $meta_type, $primary_table, $primary_id_column, &$context ) );
     445        return apply_filters( 'get_meta_sql', array( compact( 'join', 'where' ), $meta_query, $meta_type, $primary_table, $primary_id_column, $context ) );
    446446}
    447447
    448448/**
  • wp-includes/pluggable.php

     
    256256 * @uses apply_filters() Calls 'wp_mail_from_name' hook to get the from address name.
    257257 * @uses apply_filters() Calls 'wp_mail_content_type' hook to get the email content type.
    258258 * @uses apply_filters() Calls 'wp_mail_charset' hook to get the email charset
    259  * @uses do_action_ref_array() Calls 'phpmailer_init' hook on the reference to
     259 * @uses do_action() Calls 'phpmailer_init' hook on the reference to
    260260 *              phpmailer object.
    261261 * @uses PHPMailer
    262262 * @
     
    459459                }
    460460        }
    461461
    462         do_action_ref_array( 'phpmailer_init', array( &$phpmailer ) );
     462        do_action( 'phpmailer_init', $phpmailer );
    463463
    464464        // Send!
    465465        $result = @$phpmailer->Send();
  • wp-includes/query.php

     
    16271627                if ( '404' == $qv['error'] )
    16281628                        $this->set_404();
    16291629
    1630                 do_action_ref_array('parse_query', array(&$this));
     1630                do_action( 'parse_query', $this );
    16311631        }
    16321632
    16331633        /*
     
    18681868         *
    18691869         * @since 1.5.0
    18701870         * @access public
    1871          * @uses do_action_ref_array() Calls 'pre_get_posts' hook before retrieving posts.
     1871         * @uses do_action() Calls 'pre_get_posts' hook before retrieving posts.
    18721872         *
    18731873         * @return array List of posts.
    18741874         */
     
    18771877
    18781878                $this->parse_query();
    18791879
    1880                 do_action_ref_array('pre_get_posts', array(&$this));
     1880                do_action( 'pre_get_posts', $this );
    18811881
    18821882                // Shorthand.
    18831883                $q = &$this->query_vars;
     
    21472147                }
    21482148
    21492149                // Allow plugins to contextually add/remove/modify the search section of the database query
    2150                 $search = apply_filters_ref_array('posts_search', array( $search, &$this ) );
     2150                $search = apply_filters( 'posts_search', $search, $this );
    21512151
    21522152                // Taxonomies
    21532153                if ( !$this->is_singular ) {
     
    24532453                // Apply filters on where and join prior to paging so that any
    24542454                // manipulations to them are reflected in the paging by day queries.
    24552455                if ( !$q['suppress_filters'] ) {
    2456                         $where = apply_filters_ref_array('posts_where', array( $where, &$this ) );
    2457                         $join = apply_filters_ref_array('posts_join', array( $join, &$this ) );
     2456                        $where = apply_filters( 'posts_where', $where, $this );
     2457                        $join = apply_filters( 'posts_join', $join, $this );
    24582458                }
    24592459
    24602460                // Paging
     
    24872487                        }
    24882488
    24892489                        if ( !$q['suppress_filters'] ) {
    2490                                 $cjoin = apply_filters_ref_array('comment_feed_join', array( $cjoin, &$this ) );
    2491                                 $cwhere = apply_filters_ref_array('comment_feed_where', array( $cwhere, &$this ) );
    2492                                 $cgroupby = apply_filters_ref_array('comment_feed_groupby', array( $cgroupby, &$this ) );
    2493                                 $corderby = apply_filters_ref_array('comment_feed_orderby', array( 'comment_date_gmt DESC', &$this ) );
    2494                                 $climits = apply_filters_ref_array('comment_feed_limits', array( 'LIMIT ' . get_option('posts_per_rss'), &$this ) );
     2490                                $cjoin = apply_filters('comment_feed_join', $cjoin, $this );
     2491                                $cwhere = apply_filters('comment_feed_where', $cwhere, $this );
     2492                                $cgroupby = apply_filters('comment_feed_groupby', $cgroupby, $this );
     2493                                $corderby = apply_filters('comment_feed_orderby', 'comment_date_gmt DESC', $this );
     2494                                $climits = apply_filters('comment_feed_limits', 'LIMIT ' . get_option('posts_per_rss'), $this );
    24952495                        }
    24962496                        $cgroupby = ( ! empty( $cgroupby ) ) ? 'GROUP BY ' . $cgroupby : '';
    24972497                        $corderby = ( ! empty( $corderby ) ) ? 'ORDER BY ' . $corderby : '';
     
    25192519                // Apply post-paging filters on where and join.  Only plugins that
    25202520                // manipulate paging queries should use these hooks.
    25212521                if ( !$q['suppress_filters'] ) {
    2522                         $where          = apply_filters_ref_array( 'posts_where_paged', array( $where, &$this ) );
    2523                         $groupby        = apply_filters_ref_array( 'posts_groupby',             array( $groupby, &$this ) );
    2524                         $join           = apply_filters_ref_array( 'posts_join_paged',  array( $join, &$this ) );
    2525                         $orderby        = apply_filters_ref_array( 'posts_orderby',             array( $orderby, &$this ) );
    2526                         $distinct       = apply_filters_ref_array( 'posts_distinct',    array( $distinct, &$this ) );
    2527                         $limits         = apply_filters_ref_array( 'post_limits',               array( $limits, &$this ) );
    2528                         $fields         = apply_filters_ref_array( 'posts_fields',              array( $fields, &$this ) );
     2522                        $where          = apply_filters( 'posts_where_paged',   $where, $this );
     2523                        $groupby        = apply_filters( 'posts_groupby',               $groupby, $this );
     2524                        $join           = apply_filters( 'posts_join_paged',    $join, $this );
     2525                        $orderby        = apply_filters( 'posts_orderby',               $orderby, $this );
     2526                        $distinct       = apply_filters( 'posts_distinct',              $distinct, $this );
     2527                        $limits         = apply_filters( 'post_limits',                 $limits, $this );
     2528                        $fields         = apply_filters( 'posts_fields',                $fields, $this );
    25292529
    25302530                        // Filter all clauses at once, for convenience
    2531                         $clauses = (array) apply_filters_ref_array( 'posts_clauses', array( compact( $pieces ), &$this ) );
     2531                        $clauses = (array) apply_filters( 'posts_clauses', compact( $pieces ), $this );
    25322532                        foreach ( $pieces as $piece )
    25332533                                $$piece = isset( $clauses[ $piece ] ) ? $clauses[ $piece ] : '';
    25342534                }
     
    25382538
    25392539                // Filter again for the benefit of caching plugins.  Regular plugins should use the hooks above.
    25402540                if ( !$q['suppress_filters'] ) {
    2541                         $where          = apply_filters_ref_array( 'posts_where_request',               array( $where, &$this ) );
    2542                         $groupby        = apply_filters_ref_array( 'posts_groupby_request',             array( $groupby, &$this ) );
    2543                         $join           = apply_filters_ref_array( 'posts_join_request',                array( $join, &$this ) );
    2544                         $orderby        = apply_filters_ref_array( 'posts_orderby_request',             array( $orderby, &$this ) );
    2545                         $distinct       = apply_filters_ref_array( 'posts_distinct_request',    array( $distinct, &$this ) );
    2546                         $fields         = apply_filters_ref_array( 'posts_fields_request',              array( $fields, &$this ) );
    2547                         $limits         = apply_filters_ref_array( 'post_limits_request',               array( $limits, &$this ) );
     2541                        $where          = apply_filters( 'posts_where_request',         $where, $this );
     2542                        $groupby        = apply_filters( 'posts_groupby_request',       $groupby, $this );
     2543                        $join           = apply_filters( 'posts_join_request',          $join, $this );
     2544                        $orderby        = apply_filters( 'posts_orderby_request',       $orderby, $this );
     2545                        $distinct       = apply_filters( 'posts_distinct_request',      $distinct, $this );
     2546                        $fields         = apply_filters( 'posts_fields_request',        $fields, $this );
     2547                        $limits         = apply_filters( 'post_limits_request',         $limits, $this );
    25482548
    25492549                        // Filter all clauses at once, for convenience
    2550                         $clauses = (array) apply_filters_ref_array( 'posts_clauses_request', array( compact( $pieces ), &$this ) );
     2550                        $clauses = (array) apply_filters( 'posts_clauses_request', compact( $pieces ), $this );
    25512551                        foreach ( $pieces as $piece )
    25522552                                $$piece = isset( $clauses[ $piece ] ) ? $clauses[ $piece ] : '';
    25532553                }
     
    25632563
    25642564                $this->request = " SELECT $found_rows $distinct $fields FROM $wpdb->posts $join WHERE 1=1 $where $groupby $orderby $limits";
    25652565                if ( !$q['suppress_filters'] )
    2566                         $this->request = apply_filters_ref_array('posts_request', array( $this->request, &$this ) );
     2566                        $this->request = apply_filters('posts_request', $this->request, $this );
    25672567
    25682568                if ( 'ids' == $q['fields'] ) {
    25692569                        $this->posts = $wpdb->get_col($this->request);
     
    25852585
    25862586                // Raw results filter.  Prior to status checks.
    25872587                if ( !$q['suppress_filters'] )
    2588                         $this->posts = apply_filters_ref_array('posts_results', array( $this->posts, &$this ) );
     2588                        $this->posts = apply_filters('posts_results', $this->posts, $this );
    25892589
    25902590                if ( !empty($this->posts) && $this->is_comment_feed && $this->is_singular ) {
    2591                         $cjoin = apply_filters_ref_array('comment_feed_join', array( '', &$this ) );
    2592                         $cwhere = apply_filters_ref_array('comment_feed_where', array( "WHERE comment_post_ID = '{$this->posts[0]->ID}' AND comment_approved = '1'", &$this ) );
    2593                         $cgroupby = apply_filters_ref_array('comment_feed_groupby', array( '', &$this ) );
     2591                        $cjoin = apply_filters('comment_feed_join', '', $this );
     2592                        $cwhere = apply_filters('comment_feed_where', "WHERE comment_post_ID = '{$this->posts[0]->ID}' AND comment_approved = '1'", $this );
     2593                        $cgroupby = apply_filters('comment_feed_groupby', '', $this );
    25942594                        $cgroupby = ( ! empty( $cgroupby ) ) ? 'GROUP BY ' . $cgroupby : '';
    2595                         $corderby = apply_filters_ref_array('comment_feed_orderby', array( 'comment_date_gmt DESC', &$this ) );
     2595                        $corderby = apply_filters('comment_feed_orderby', 'comment_date_gmt DESC', $this );
    25962596                        $corderby = ( ! empty( $corderby ) ) ? 'ORDER BY ' . $corderby : '';
    2597                         $climits = apply_filters_ref_array('comment_feed_limits', array( 'LIMIT ' . get_option('posts_per_rss'), &$this ) );
     2597                        $climits = apply_filters('comment_feed_limits', 'LIMIT ' . get_option('posts_per_rss'), $this );
    25982598                        $comments_request = "SELECT $wpdb->comments.* FROM $wpdb->comments $cjoin $cwhere $cgroupby $corderby $climits";
    25992599                        $this->comments = $wpdb->get_results($comments_request);
    26002600                        $this->comment_count = count($this->comments);
    26012601                }
    26022602
    26032603                if ( !$q['no_found_rows'] && !empty($limits) ) {
    2604                         $found_posts_query = apply_filters_ref_array( 'found_posts_query', array( 'SELECT FOUND_ROWS()', &$this ) );
     2604                        $found_posts_query = apply_filters( 'found_posts_query', 'SELECT FOUND_ROWS()', $this );
    26052605                        $this->found_posts = $wpdb->get_var( $found_posts_query );
    2606                         $this->found_posts = apply_filters_ref_array( 'found_posts', array( $this->found_posts, &$this ) );
     2606                        $this->found_posts = apply_filters( 'found_posts', $this->found_posts, $this );
    26072607                        $this->max_num_pages = ceil($this->found_posts / $q['posts_per_page']);
    26082608                }
    26092609
     
    26362636                        }
    26372637
    26382638                        if ( $this->is_preview && current_user_can( $edit_cap, $this->posts[0]->ID ) )
    2639                                 $this->posts[0] = apply_filters_ref_array('the_preview', array( $this->posts[0], &$this ));
     2639                                $this->posts[0] = apply_filters('the_preview', $this->posts[0], $this );
    26402640                }
    26412641
    26422642                // Put sticky posts at the top of the posts array
     
    26902690                }
    26912691
    26922692                if ( !$q['suppress_filters'] )
    2693                         $this->posts = apply_filters_ref_array('the_posts', array( $this->posts, &$this ) );
     2693                        $this->posts = apply_filters('the_posts', $this->posts, $this );
    26942694
    26952695                $this->post_count = count($this->posts);
    26962696
     
    27342734         * @since 1.5.0
    27352735         * @access public
    27362736         * @uses $post
    2737          * @uses do_action_ref_array() Calls 'loop_start' if loop has just started
     2737         * @uses do_action() Calls 'loop_start' if loop has just started
    27382738         */
    27392739        function the_post() {
    27402740                global $post;
    27412741                $this->in_the_loop = true;
    27422742
    27432743                if ( $this->current_post == -1 ) // loop has just started
    2744                         do_action_ref_array('loop_start', array(&$this));
     2744                        do_action( 'loop_start', $this );
    27452745
    27462746                $post = $this->next_post();
    27472747                setup_postdata($post);
     
    27542754         *
    27552755         * @since 1.5.0
    27562756         * @access public
    2757          * @uses do_action_ref_array() Calls 'loop_end' if loop is ended
     2757         * @uses do_action() Calls 'loop_end' if loop is ended
    27582758         *
    27592759         * @return bool True if posts are available, false if end of loop.
    27602760         */
     
    27622762                if ( $this->current_post + 1 < $this->post_count ) {
    27632763                        return true;
    27642764                } elseif ( $this->current_post + 1 == $this->post_count && $this->post_count > 0 ) {
    2765                         do_action_ref_array('loop_end', array(&$this));
     2765                        do_action( 'loop_end', $this );
    27662766                        // Do some cleaning up after the loop
    27672767                        $this->rewind_posts();
    27682768                }
     
    34873487 * @since 1.5.0
    34883488 *
    34893489 * @param object $post Post data.
    3490  * @uses do_action_ref_array() Calls 'the_post'
     3490 * @uses do_action() Calls 'the_post'
    34913491 * @return bool True when finished.
    34923492 */
    34933493function setup_postdata($post) {
     
    35203520                $multipage = 0;
    35213521        }
    35223522
    3523         do_action_ref_array('the_post', array(&$post));
     3523        do_action( 'the_post', $post );
    35243524
    35253525        return true;
    35263526}
  • wp-includes/rewrite.php

     
    15621562                else
    15631563                        $this->rules = array_merge($this->extra_rules_top, $robots_rewrite, $default_feeds, $registration_pages, $root_rewrite, $comments_rewrite, $search_rewrite,  $author_rewrite, $date_rewrite, $post_rewrite, $page_rewrite, $this->extra_rules);
    15641564
    1565                 do_action_ref_array('generate_rewrite_rules', array(&$this));
     1565                do_action( 'generate_rewrite_rules', $this );
    15661566                $this->rules = apply_filters('rewrite_rules_array', $this->rules);
    15671567
    15681568                return $this->rules;
  • wp-includes/user.php

     
    531531                        $this->query_where .= " AND $wpdb->users.ID NOT IN ($ids)";
    532532                }
    533533
    534                 do_action_ref_array( 'pre_user_query', array( &$this ) );
     534                do_action( 'pre_user_query', $this );
    535535        }
    536536
    537537        /**
  • wp-includes/widgets.php

     
    270270                        $return = $this->form($instance);
    271271                        // add extra fields in the widget form - be sure to set $return to null if you add any
    272272                        // if the widget has no form the text echoed from the default form method can be hidden using css
    273                         do_action_ref_array( 'in_widget_form', array(&$this, &$return, $instance) );
     273                        do_action_ref_array( 'in_widget_form', array($this, &$return, $instance) );
    274274                }
    275275                return $return;
    276276        }