Ticket #16767: 16767.patch
| File 16767.patch, 39.9 KB (added by , 15 years ago) |
|---|
-
wp-admin/includes/class-wp-importer.php
186 186 */ 187 187 function get_page( $url, $username = '', $password = '', $head = false ) { 188 188 // Increase the timeout 189 add_filter( 'http_request_timeout', array( &$this, 'bump_request_timeout' ) );189 add_filter( 'http_request_timeout', array( $this, 'bump_request_timeout' ) ); 190 190 191 191 $headers = array(); 192 192 $args = array(); -
wp-admin/includes/class-wp-list-table.php
86 86 87 87 $screen = get_current_screen(); 88 88 89 add_filter( "manage_{$screen->id}_columns", array( &$this, 'get_columns' ), 0 );89 add_filter( "manage_{$screen->id}_columns", array( $this, 'get_columns' ), 0 ); 90 90 91 91 if ( !$args['plural'] ) 92 92 $args['plural'] = $screen->base; … … 95 95 96 96 if ( $args['ajax'] ) { 97 97 // wp_enqueue_script( 'list-table' ); 98 add_action( 'admin_footer', array( &$this, '_js_vars' ) );98 add_action( 'admin_footer', array( $this, '_js_vars' ) ); 99 99 } 100 100 } 101 101 … … 833 833 } 834 834 elseif ( method_exists( $this, 'column_' . $column_name ) ) { 835 835 echo "<td $attributes>"; 836 echo call_user_func( array( &$this, 'column_' . $column_name ), $item );836 echo call_user_func( array( $this, 'column_' . $column_name ), $item ); 837 837 echo "</td>"; 838 838 } 839 839 else { -
wp-admin/includes/class-wp-ms-themes-list-table.php
104 104 105 105 if ( $s ) { 106 106 $status = 'search'; 107 $themes['search'] = array_filter( $themes['all'], array( &$this, '_search_callback' ) );107 $themes['search'] = array_filter( $themes['all'], array( $this, '_search_callback' ) ); 108 108 } 109 109 110 110 $totals = array(); … … 121 121 $orderby = ucfirst( $orderby ); 122 122 $order = strtoupper( $order ); 123 123 124 uasort( $this->items, array( &$this, '_order_callback' ) );124 uasort( $this->items, array( $this, '_order_callback' ) ); 125 125 } 126 126 127 127 $start = ( $page - 1 ) * $themes_per_page; -
wp-admin/includes/class-wp-plugins-list-table.php
107 107 108 108 if ( $s ) { 109 109 $status = 'search'; 110 $plugins['search'] = array_filter( $plugins['all'], array( &$this, '_search_callback' ) );110 $plugins['search'] = array_filter( $plugins['all'], array( $this, '_search_callback' ) ); 111 111 } 112 112 113 113 $totals = array(); … … 129 129 $orderby = ucfirst( $orderby ); 130 130 $order = strtoupper( $order ); 131 131 132 uasort( $this->items, array( &$this, '_order_callback' ) );132 uasort( $this->items, array( $this, '_order_callback' ) ); 133 133 } 134 134 135 135 $plugins_per_page = $this->get_items_per_page( str_replace( '-', '_', $screen->id . '_per_page' ) ); -
wp-admin/includes/class-wp-upgrader.php
422 422 // Get the URL to the zip file 423 423 $r = $current->response[ $plugin ]; 424 424 425 add_filter('upgrader_pre_install', array( &$this, 'deactivate_plugin_before_upgrade'), 10, 2);426 add_filter('upgrader_clear_destination', array( &$this, 'delete_old_plugin'), 10, 4);427 //'source_selection' => array( &$this, 'source_selection'), //theres a track ticket to move up the directory for zip's which are made a bit differently, useful for non-.org plugins.425 add_filter('upgrader_pre_install', array($this, 'deactivate_plugin_before_upgrade'), 10, 2); 426 add_filter('upgrader_clear_destination', array($this, 'delete_old_plugin'), 10, 4); 427 //'source_selection' => array($this, 'source_selection'), //theres a track ticket to move up the directory for zip's which are made a bit differently, useful for non-.org plugins. 428 428 429 429 $this->run(array( 430 430 'package' => $r->package, … … 437 437 )); 438 438 439 439 // Cleanup our hooks, incase something else does a upgrade on this connection. 440 remove_filter('upgrader_pre_install', array( &$this, 'deactivate_plugin_before_upgrade'));441 remove_filter('upgrader_clear_destination', array( &$this, 'delete_old_plugin'));440 remove_filter('upgrader_pre_install', array($this, 'deactivate_plugin_before_upgrade')); 441 remove_filter('upgrader_clear_destination', array($this, 'delete_old_plugin')); 442 442 443 443 if ( ! $this->result || is_wp_error($this->result) ) 444 444 return $this->result; … … 455 455 456 456 $current = get_site_transient( 'update_plugins' ); 457 457 458 add_filter('upgrader_clear_destination', array( &$this, 'delete_old_plugin'), 10, 4);458 add_filter('upgrader_clear_destination', array($this, 'delete_old_plugin'), 10, 4); 459 459 460 460 $this->skin->header(); 461 461 … … 522 522 $this->skin->footer(); 523 523 524 524 // Cleanup our hooks, incase something else does a upgrade on this connection. 525 remove_filter('upgrader_clear_destination', array( &$this, 'delete_old_plugin'));525 remove_filter('upgrader_clear_destination', array($this, 'delete_old_plugin')); 526 526 527 527 // Force refresh of plugin update information 528 528 delete_site_transient('update_plugins'); … … 669 669 670 670 $r = $current->response[ $theme ]; 671 671 672 add_filter('upgrader_pre_install', array( &$this, 'current_before'), 10, 2);673 add_filter('upgrader_post_install', array( &$this, 'current_after'), 10, 2);674 add_filter('upgrader_clear_destination', array( &$this, 'delete_old_theme'), 10, 4);672 add_filter('upgrader_pre_install', array($this, 'current_before'), 10, 2); 673 add_filter('upgrader_post_install', array($this, 'current_after'), 10, 2); 674 add_filter('upgrader_clear_destination', array($this, 'delete_old_theme'), 10, 4); 675 675 676 676 $options = array( 677 677 'package' => $r['package'], … … 702 702 703 703 $current = get_site_transient( 'update_themes' ); 704 704 705 add_filter('upgrader_pre_install', array( &$this, 'current_before'), 10, 2);706 add_filter('upgrader_post_install', array( &$this, 'current_after'), 10, 2);707 add_filter('upgrader_clear_destination', array( &$this, 'delete_old_theme'), 10, 4);705 add_filter('upgrader_pre_install', array($this, 'current_before'), 10, 2); 706 add_filter('upgrader_post_install', array($this, 'current_after'), 10, 2); 707 add_filter('upgrader_clear_destination', array($this, 'delete_old_theme'), 10, 4); 708 708 709 709 $this->skin->header(); 710 710 … … 771 771 $this->skin->footer(); 772 772 773 773 // Cleanup our hooks, incase something else does a upgrade on this connection. 774 remove_filter('upgrader_pre_install', array( &$this, 'current_before'), 10, 2);775 remove_filter('upgrader_post_install', array( &$this, 'current_after'), 10, 2);776 remove_filter('upgrader_clear_destination', array( &$this, 'delete_old_theme'), 10, 4);774 remove_filter('upgrader_pre_install', array($this, 'current_before'), 10, 2); 775 remove_filter('upgrader_post_install', array($this, 'current_after'), 10, 2); 776 remove_filter('upgrader_clear_destination', array($this, 'delete_old_theme'), 10, 4); 777 777 778 778 // Force refresh of theme update information 779 779 delete_site_transient('update_themes'); -
wp-admin/includes/deprecated.php
502 502 $this->query_where .= " AND $wpdb->users.ID = $wpdb->usermeta.user_id AND meta_key = '{$level_key}'"; 503 503 } 504 504 505 do_action_ref_array( 'pre_user_search', array( &$this ) );505 do_action_ref_array( 'pre_user_search', array( $this ) ); 506 506 } 507 507 508 508 /** -
wp-admin/includes/list-table.php
85 85 86 86 if ( !empty( $columns ) ) { 87 87 $this->_columns = $columns; 88 add_filter( 'manage_' . $screen->id . '_columns', array( &$this, 'get_columns' ), 0 );88 add_filter( 'manage_' . $screen->id . '_columns', array( $this, 'get_columns' ), 0 ); 89 89 } 90 90 } 91 91 -
wp-admin/custom-background.php
64 64 if ( ! current_user_can('edit_theme_options') ) 65 65 return; 66 66 67 $this->page = $page = add_theme_page(__('Background'), __('Background'), 'edit_theme_options', 'custom-background', array( &$this, 'admin_page'));67 $this->page = $page = add_theme_page(__('Background'), __('Background'), 'edit_theme_options', 'custom-background', array($this, 'admin_page')); 68 68 69 add_action("load-$page", array( &$this, 'admin_load'));70 add_action("load-$page", array( &$this, 'take_action'), 49);71 add_action("load-$page", array( &$this, 'handle_upload'), 49);69 add_action("load-$page", array($this, 'admin_load')); 70 add_action("load-$page", array($this, 'take_action'), 49); 71 add_action("load-$page", array($this, 'handle_upload'), 49); 72 72 73 73 if ( $this->admin_header_callback ) 74 74 add_action("admin_head-$page", $this->admin_header_callback, 51); -
wp-admin/custom-header.php
73 73 if ( ! current_user_can('edit_theme_options') ) 74 74 return; 75 75 76 $this->page = $page = add_theme_page(__('Header'), __('Header'), 'edit_theme_options', 'custom-header', array( &$this, 'admin_page'));76 $this->page = $page = add_theme_page(__('Header'), __('Header'), 'edit_theme_options', 'custom-header', array($this, 'admin_page')); 77 77 78 add_action("admin_print_scripts-$page", array( &$this, 'js_includes'));79 add_action("admin_print_styles-$page", array( &$this, 'css_includes'));80 add_action("admin_head-$page", array( &$this, 'help') );81 add_action("admin_head-$page", array( &$this, 'take_action'), 50);82 add_action("admin_head-$page", array( &$this, 'js'), 50);78 add_action("admin_print_scripts-$page", array($this, 'js_includes')); 79 add_action("admin_print_styles-$page", array($this, 'css_includes')); 80 add_action("admin_head-$page", array($this, 'help') ); 81 add_action("admin_head-$page", array($this, 'take_action'), 50); 82 add_action("admin_head-$page", array($this, 'js'), 50); 83 83 add_action("admin_head-$page", $this->admin_header_callback, 51); 84 84 } 85 85 -
wp-includes/cache.php
100 100 * @global WP_Object_Cache $wp_object_cache WordPress Object Cache 101 101 */ 102 102 function wp_cache_init() { 103 $GLOBALS['wp_object_cache'] = &new WP_Object_Cache();103 $GLOBALS['wp_object_cache'] = new WP_Object_Cache(); 104 104 } 105 105 106 106 /** … … 478 478 * @todo This should be moved to the PHP4 style constructor, PHP5 479 479 * already calls __destruct() 480 480 */ 481 register_shutdown_function(array( &$this, "__destruct"));481 register_shutdown_function(array($this, "__destruct")); 482 482 } 483 483 484 484 /** -
wp-includes/capabilities.php
661 661 */ 662 662 function update_user_level_from_caps() { 663 663 global $wpdb; 664 $this->user_level = array_reduce( array_keys( $this->allcaps ), array( &$this, 'level_reduction' ), 0 );664 $this->user_level = array_reduce( array_keys( $this->allcaps ), array( $this, 'level_reduction' ), 0 ); 665 665 update_user_meta( $this->ID, $wpdb->prefix . 'user_level', $this->user_level ); 666 666 } 667 667 -
wp-includes/class-oembed.php
57 57 ) ); 58 58 59 59 // Fix any embeds that contain new lines in the middle of the HTML which breaks wpautop(). 60 add_filter( 'oembed_dataparse', array( &$this, '_strip_newlines'), 10, 3 );60 add_filter( 'oembed_dataparse', array($this, '_strip_newlines'), 10, 3 ); 61 61 } 62 62 63 63 /** -
wp-includes/class-wp-walker.php
126 126 if ( is_array( $args[0] ) ) 127 127 $args[0]['has_children'] = ! empty( $children_elements[$element->$id_field] ); 128 128 $cb_args = array_merge( array(&$output, $element, $depth), $args); 129 call_user_func_array(array( &$this, 'start_el'), $cb_args);129 call_user_func_array(array($this, 'start_el'), $cb_args); 130 130 131 131 $id = $element->$id_field; 132 132 … … 139 139 $newlevel = true; 140 140 //start the child delimiter 141 141 $cb_args = array_merge( array(&$output, $depth), $args); 142 call_user_func_array(array( &$this, 'start_lvl'), $cb_args);142 call_user_func_array(array($this, 'start_lvl'), $cb_args); 143 143 } 144 144 $this->display_element( $child, $children_elements, $max_depth, $depth + 1, $args, $output ); 145 145 } … … 149 149 if ( isset($newlevel) && $newlevel ){ 150 150 //end the child delimiter 151 151 $cb_args = array_merge( array(&$output, $depth), $args); 152 call_user_func_array(array( &$this, 'end_lvl'), $cb_args);152 call_user_func_array(array($this, 'end_lvl'), $cb_args); 153 153 } 154 154 155 155 //end this element 156 156 $cb_args = array_merge( array(&$output, $element, $depth), $args); 157 call_user_func_array(array( &$this, 'end_el'), $cb_args);157 call_user_func_array(array($this, 'end_el'), $cb_args); 158 158 } 159 159 160 160 /** -
wp-includes/class-wp.php
298 298 299 299 $this->query_vars = apply_filters('request', $this->query_vars); 300 300 301 do_action_ref_array('parse_request', array( &$this));301 do_action_ref_array('parse_request', array($this)); 302 302 } 303 303 304 304 /** … … 373 373 if ( $exit_required ) 374 374 exit(); 375 375 376 do_action_ref_array('send_headers', array( &$this));376 do_action_ref_array('send_headers', array($this)); 377 377 } 378 378 379 379 /** … … 501 501 $this->query_posts(); 502 502 $this->handle_404(); 503 503 $this->register_globals(); 504 do_action_ref_array('wp', array( &$this));504 do_action_ref_array('wp', array($this)); 505 505 } 506 506 507 507 /** … … 579 579 * @return string 580 580 */ 581 581 function apply($subject, $matches) { 582 $oSelf = &new WP_MatchesMapRegex($subject, $matches);582 $oSelf = new WP_MatchesMapRegex($subject, $matches); 583 583 return $oSelf->output; 584 584 } 585 585 … … 590 590 * @return string 591 591 */ 592 592 function _map() { 593 $callback = array( &$this, 'callback');593 $callback = array($this, 'callback'); 594 594 return preg_replace_callback($this->_pattern, $callback, $this->_subject); 595 595 } 596 596 -
wp-includes/class.wp-dependencies.php
27 27 28 28 function WP_Dependencies() { 29 29 $args = func_get_args(); 30 call_user_func_array( array( &$this, '__construct'), $args );30 call_user_func_array( array($this, '__construct'), $args ); 31 31 } 32 32 33 33 function __construct() {} -
wp-includes/class.wp-scripts.php
31 31 var $default_dirs; 32 32 33 33 function __construct() { 34 do_action_ref_array( 'wp_default_scripts', array( &$this) );34 do_action_ref_array( 'wp_default_scripts', array($this) ); 35 35 } 36 36 37 37 /** -
wp-includes/class.wp-styles.php
28 28 var $default_dirs; 29 29 30 30 function __construct() { 31 do_action_ref_array( 'wp_default_styles', array( &$this) );31 do_action_ref_array( 'wp_default_styles', array($this) ); 32 32 } 33 33 34 34 function do_item( $handle ) { -
wp-includes/comment.php
221 221 ); 222 222 223 223 $this->query_vars = wp_parse_args( $query_vars, $defaults ); 224 do_action_ref_array( 'pre_get_comments', array( &$this ) );224 do_action_ref_array( 'pre_get_comments', array( $this ) ); 225 225 extract( $this->query_vars, EXTR_SKIP ); 226 226 227 227 // $args can be whatever, only use the args defined in defaults to compute the key … … 320 320 $where .= $this->get_search_sql( $search, array( 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_author_IP', 'comment_content' ) ); 321 321 322 322 $pieces = array( 'fields', 'join', 'where', 'orderby', 'order', 'limits' ); 323 $clauses = apply_filters_ref_array( 'comments_clauses', array( compact( $pieces ), &$this ) );323 $clauses = apply_filters_ref_array( 'comments_clauses', array( compact( $pieces ), $this ) ); 324 324 foreach ( $pieces as $piece ) 325 325 $$piece = isset( $clauses[ $piece ] ) ? $clauses[ $piece ] : ''; 326 326 … … 330 330 return $wpdb->get_var( $query ); 331 331 332 332 $comments = $wpdb->get_results( $query ); 333 $comments = apply_filters_ref_array( 'the_comments', array( $comments, &$this ) );333 $comments = apply_filters_ref_array( 'the_comments', array( $comments, $this ) ); 334 334 335 335 wp_cache_add( $cache_key, $comments, 'comment' ); 336 336 -
wp-includes/default-widgets.php
514 514 $this->WP_Widget('recent-posts', __('Recent Posts'), $widget_ops); 515 515 $this->alt_option_name = 'widget_recent_entries'; 516 516 517 add_action( 'save_post', array( &$this, 'flush_widget_cache') );518 add_action( 'deleted_post', array( &$this, 'flush_widget_cache') );519 add_action( 'switch_theme', array( &$this, 'flush_widget_cache') );517 add_action( 'save_post', array($this, 'flush_widget_cache') ); 518 add_action( 'deleted_post', array($this, 'flush_widget_cache') ); 519 add_action( 'switch_theme', array($this, 'flush_widget_cache') ); 520 520 } 521 521 522 522 function widget($args, $instance) { … … 601 601 $this->alt_option_name = 'widget_recent_comments'; 602 602 603 603 if ( is_active_widget(false, false, $this->id_base) ) 604 add_action( 'wp_head', array( &$this, 'recent_comments_style') );604 add_action( 'wp_head', array($this, 'recent_comments_style') ); 605 605 606 add_action( 'comment_post', array( &$this, 'flush_widget_cache') );607 add_action( 'transition_comment_status', array( &$this, 'flush_widget_cache') );606 add_action( 'comment_post', array($this, 'flush_widget_cache') ); 607 add_action( 'transition_comment_status', array($this, 'flush_widget_cache') ); 608 608 } 609 609 610 610 function recent_comments_style() { -
wp-includes/l10n.php
483 483 function &get_translations_for_domain( $domain ) { 484 484 global $l10n; 485 485 if ( !isset( $l10n[$domain] ) ) { 486 $l10n[$domain] = &new NOOP_Translations;486 $l10n[$domain] = new NOOP_Translations; 487 487 } 488 488 return $l10n[$domain]; 489 489 } -
wp-includes/media.php
1036 1036 */ 1037 1037 function __construct() { 1038 1038 // Hack to get the [embed] shortcode to run before wpautop() 1039 add_filter( 'the_content', array( &$this, 'run_shortcode'), 8 );1039 add_filter( 'the_content', array($this, 'run_shortcode'), 8 ); 1040 1040 1041 1041 // Shortcode placeholder for strip_shortcodes() 1042 1042 add_shortcode( 'embed', '__return_false' ); 1043 1043 1044 1044 // Attempts to embed all URLs in a post 1045 1045 if ( get_option('embed_autourls') ) 1046 add_filter( 'the_content', array( &$this, 'autoembed'), 8 );1046 add_filter( 'the_content', array($this, 'autoembed'), 8 ); 1047 1047 1048 1048 // After a post is saved, invalidate the oEmbed cache 1049 add_action( 'save_post', array( &$this, 'delete_oembed_caches') );1049 add_action( 'save_post', array($this, 'delete_oembed_caches') ); 1050 1050 1051 1051 // After a post is saved, cache oEmbed items via AJAX 1052 add_action( 'edit_form_advanced', array( &$this, 'maybe_run_ajax_cache') );1052 add_action( 'edit_form_advanced', array($this, 'maybe_run_ajax_cache') ); 1053 1053 } 1054 1054 1055 1055 /** … … 1074 1074 $orig_shortcode_tags = $shortcode_tags; 1075 1075 remove_all_shortcodes(); 1076 1076 1077 add_shortcode( 'embed', array( &$this, 'shortcode') );1077 add_shortcode( 'embed', array($this, 'shortcode') ); 1078 1078 1079 1079 // Do the shortcode (only the [embed] one is registered) 1080 1080 $content = do_shortcode( $content ); … … 1264 1264 * @return string Potentially modified $content. 1265 1265 */ 1266 1266 function autoembed( $content ) { 1267 return preg_replace_callback( '|^\s*(https?://[^\s"]+)\s*$|im', array( &$this, 'autoembed_callback'), $content );1267 return preg_replace_callback( '|^\s*(https?://[^\s"]+)\s*$|im', array($this, 'autoembed_callback'), $content ); 1268 1268 } 1269 1269 1270 1270 /** -
wp-includes/plugin.php
374 374 } 375 375 376 376 $args = array(); 377 if ( is_array($arg) && 1 == count($arg) && isset($arg[0]) && is_object($arg[0]) ) // array( &$this)377 if ( is_array($arg) && 1 == count($arg) && isset($arg[0]) && is_object($arg[0]) ) // array($this) 378 378 $args[] =& $arg[0]; 379 379 else 380 380 $args[] = $arg; -
wp-includes/query.php
89 89 */ 90 90 function &query_posts($query) { 91 91 unset($GLOBALS['wp_query']); 92 $GLOBALS['wp_query'] = &new WP_Query();92 $GLOBALS['wp_query'] = new WP_Query(); 93 93 return $GLOBALS['wp_query']->query($query); 94 94 } 95 95 … … 1627 1627 if ( '404' == $qv['error'] ) 1628 1628 $this->set_404(); 1629 1629 1630 do_action_ref_array('parse_query', array( &$this));1630 do_action_ref_array('parse_query', array($this)); 1631 1631 } 1632 1632 1633 1633 /* … … 1877 1877 1878 1878 $this->parse_query(); 1879 1879 1880 do_action_ref_array('pre_get_posts', array( &$this));1880 do_action_ref_array('pre_get_posts', array($this)); 1881 1881 1882 1882 // Shorthand. 1883 1883 $q = &$this->query_vars; … … 2147 2147 } 2148 2148 2149 2149 // 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_ref_array('posts_search', array( $search, $this ) ); 2151 2151 2152 2152 // Taxonomies 2153 2153 $this->parse_tax_query( $q ); … … 2443 2443 } 2444 2444 2445 2445 if ( !empty( $q['meta_query'] ) ) { 2446 $clauses = call_user_func_array( '_get_meta_sql', array( $q['meta_query'], 'post', $wpdb->posts, 'ID', &$this) );2446 $clauses = call_user_func_array( '_get_meta_sql', array( $q['meta_query'], 'post', $wpdb->posts, 'ID', $this) ); 2447 2447 $join .= $clauses['join']; 2448 2448 $where .= $clauses['where']; 2449 2449 } … … 2451 2451 // Apply filters on where and join prior to paging so that any 2452 2452 // manipulations to them are reflected in the paging by day queries. 2453 2453 if ( !$q['suppress_filters'] ) { 2454 $where = apply_filters_ref_array('posts_where', array( $where, &$this ) );2455 $join = apply_filters_ref_array('posts_join', array( $join, &$this ) );2454 $where = apply_filters_ref_array('posts_where', array( $where, $this ) ); 2455 $join = apply_filters_ref_array('posts_join', array( $join, $this ) ); 2456 2456 } 2457 2457 2458 2458 // Paging … … 2485 2485 } 2486 2486 2487 2487 if ( !$q['suppress_filters'] ) { 2488 $cjoin = apply_filters_ref_array('comment_feed_join', array( $cjoin, &$this ) );2489 $cwhere = apply_filters_ref_array('comment_feed_where', array( $cwhere, &$this ) );2490 $cgroupby = apply_filters_ref_array('comment_feed_groupby', array( $cgroupby, &$this ) );2491 $corderby = apply_filters_ref_array('comment_feed_orderby', array( 'comment_date_gmt DESC', &$this ) );2492 $climits = apply_filters_ref_array('comment_feed_limits', array( 'LIMIT ' . get_option('posts_per_rss'), &$this ) );2488 $cjoin = apply_filters_ref_array('comment_feed_join', array( $cjoin, $this ) ); 2489 $cwhere = apply_filters_ref_array('comment_feed_where', array( $cwhere, $this ) ); 2490 $cgroupby = apply_filters_ref_array('comment_feed_groupby', array( $cgroupby, $this ) ); 2491 $corderby = apply_filters_ref_array('comment_feed_orderby', array( 'comment_date_gmt DESC', $this ) ); 2492 $climits = apply_filters_ref_array('comment_feed_limits', array( 'LIMIT ' . get_option('posts_per_rss'), $this ) ); 2493 2493 } 2494 2494 $cgroupby = ( ! empty( $cgroupby ) ) ? 'GROUP BY ' . $cgroupby : ''; 2495 2495 $corderby = ( ! empty( $corderby ) ) ? 'ORDER BY ' . $corderby : ''; … … 2517 2517 // Apply post-paging filters on where and join. Only plugins that 2518 2518 // manipulate paging queries should use these hooks. 2519 2519 if ( !$q['suppress_filters'] ) { 2520 $where = apply_filters_ref_array( 'posts_where_paged', array( $where, &$this ) );2521 $groupby = apply_filters_ref_array( 'posts_groupby', array( $groupby, &$this ) );2522 $join = apply_filters_ref_array( 'posts_join_paged', array( $join, &$this ) );2523 $orderby = apply_filters_ref_array( 'posts_orderby', array( $orderby, &$this ) );2524 $distinct = apply_filters_ref_array( 'posts_distinct', array( $distinct, &$this ) );2525 $limits = apply_filters_ref_array( 'post_limits', array( $limits, &$this ) );2526 $fields = apply_filters_ref_array( 'posts_fields', array( $fields, &$this ) );2520 $where = apply_filters_ref_array( 'posts_where_paged', array( $where, $this ) ); 2521 $groupby = apply_filters_ref_array( 'posts_groupby', array( $groupby, $this ) ); 2522 $join = apply_filters_ref_array( 'posts_join_paged', array( $join, $this ) ); 2523 $orderby = apply_filters_ref_array( 'posts_orderby', array( $orderby, $this ) ); 2524 $distinct = apply_filters_ref_array( 'posts_distinct', array( $distinct, $this ) ); 2525 $limits = apply_filters_ref_array( 'post_limits', array( $limits, $this ) ); 2526 $fields = apply_filters_ref_array( 'posts_fields', array( $fields, $this ) ); 2527 2527 2528 2528 // Filter all clauses at once, for convenience 2529 $clauses = (array) apply_filters_ref_array( 'posts_clauses', array( compact( $pieces ), &$this ) );2529 $clauses = (array) apply_filters_ref_array( 'posts_clauses', array( compact( $pieces ), $this ) ); 2530 2530 foreach ( $pieces as $piece ) 2531 2531 $$piece = isset( $clauses[ $piece ] ) ? $clauses[ $piece ] : ''; 2532 2532 } … … 2536 2536 2537 2537 // Filter again for the benefit of caching plugins. Regular plugins should use the hooks above. 2538 2538 if ( !$q['suppress_filters'] ) { 2539 $where = apply_filters_ref_array( 'posts_where_request', array( $where, &$this ) );2540 $groupby = apply_filters_ref_array( 'posts_groupby_request', array( $groupby, &$this ) );2541 $join = apply_filters_ref_array( 'posts_join_request', array( $join, &$this ) );2542 $orderby = apply_filters_ref_array( 'posts_orderby_request', array( $orderby, &$this ) );2543 $distinct = apply_filters_ref_array( 'posts_distinct_request', array( $distinct, &$this ) );2544 $fields = apply_filters_ref_array( 'posts_fields_request', array( $fields, &$this ) );2545 $limits = apply_filters_ref_array( 'post_limits_request', array( $limits, &$this ) );2539 $where = apply_filters_ref_array( 'posts_where_request', array( $where, $this ) ); 2540 $groupby = apply_filters_ref_array( 'posts_groupby_request', array( $groupby, $this ) ); 2541 $join = apply_filters_ref_array( 'posts_join_request', array( $join, $this ) ); 2542 $orderby = apply_filters_ref_array( 'posts_orderby_request', array( $orderby, $this ) ); 2543 $distinct = apply_filters_ref_array( 'posts_distinct_request', array( $distinct, $this ) ); 2544 $fields = apply_filters_ref_array( 'posts_fields_request', array( $fields, $this ) ); 2545 $limits = apply_filters_ref_array( 'post_limits_request', array( $limits, $this ) ); 2546 2546 2547 2547 // Filter all clauses at once, for convenience 2548 $clauses = (array) apply_filters_ref_array( 'posts_clauses_request', array( compact( $pieces ), &$this ) );2548 $clauses = (array) apply_filters_ref_array( 'posts_clauses_request', array( compact( $pieces ), $this ) ); 2549 2549 foreach ( $pieces as $piece ) 2550 2550 $$piece = isset( $clauses[ $piece ] ) ? $clauses[ $piece ] : ''; 2551 2551 } … … 2561 2561 2562 2562 $this->request = " SELECT $found_rows $distinct $fields FROM $wpdb->posts $join WHERE 1=1 $where $groupby $orderby $limits"; 2563 2563 if ( !$q['suppress_filters'] ) 2564 $this->request = apply_filters_ref_array('posts_request', array( $this->request, &$this ) );2564 $this->request = apply_filters_ref_array('posts_request', array( $this->request, $this ) ); 2565 2565 2566 2566 if ( 'ids' == $q['fields'] ) { 2567 2567 $this->posts = $wpdb->get_col($this->request); … … 2583 2583 2584 2584 // Raw results filter. Prior to status checks. 2585 2585 if ( !$q['suppress_filters'] ) 2586 $this->posts = apply_filters_ref_array('posts_results', array( $this->posts, &$this ) );2586 $this->posts = apply_filters_ref_array('posts_results', array( $this->posts, $this ) ); 2587 2587 2588 2588 if ( !empty($this->posts) && $this->is_comment_feed && $this->is_singular ) { 2589 $cjoin = apply_filters_ref_array('comment_feed_join', array( '', &$this ) );2590 $cwhere = apply_filters_ref_array('comment_feed_where', array( "WHERE comment_post_ID = '{$this->posts[0]->ID}' AND comment_approved = '1'", &$this ) );2591 $cgroupby = apply_filters_ref_array('comment_feed_groupby', array( '', &$this ) );2589 $cjoin = apply_filters_ref_array('comment_feed_join', array( '', $this ) ); 2590 $cwhere = apply_filters_ref_array('comment_feed_where', array( "WHERE comment_post_ID = '{$this->posts[0]->ID}' AND comment_approved = '1'", $this ) ); 2591 $cgroupby = apply_filters_ref_array('comment_feed_groupby', array( '', $this ) ); 2592 2592 $cgroupby = ( ! empty( $cgroupby ) ) ? 'GROUP BY ' . $cgroupby : ''; 2593 $corderby = apply_filters_ref_array('comment_feed_orderby', array( 'comment_date_gmt DESC', &$this ) );2593 $corderby = apply_filters_ref_array('comment_feed_orderby', array( 'comment_date_gmt DESC', $this ) ); 2594 2594 $corderby = ( ! empty( $corderby ) ) ? 'ORDER BY ' . $corderby : ''; 2595 $climits = apply_filters_ref_array('comment_feed_limits', array( 'LIMIT ' . get_option('posts_per_rss'), &$this ) );2595 $climits = apply_filters_ref_array('comment_feed_limits', array( 'LIMIT ' . get_option('posts_per_rss'), $this ) ); 2596 2596 $comments_request = "SELECT $wpdb->comments.* FROM $wpdb->comments $cjoin $cwhere $cgroupby $corderby $climits"; 2597 2597 $this->comments = $wpdb->get_results($comments_request); 2598 2598 $this->comment_count = count($this->comments); 2599 2599 } 2600 2600 2601 2601 if ( !$q['no_found_rows'] && !empty($limits) ) { 2602 $found_posts_query = apply_filters_ref_array( 'found_posts_query', array( 'SELECT FOUND_ROWS()', &$this ) );2602 $found_posts_query = apply_filters_ref_array( 'found_posts_query', array( 'SELECT FOUND_ROWS()', $this ) ); 2603 2603 $this->found_posts = $wpdb->get_var( $found_posts_query ); 2604 $this->found_posts = apply_filters_ref_array( 'found_posts', array( $this->found_posts, &$this ) );2604 $this->found_posts = apply_filters_ref_array( 'found_posts', array( $this->found_posts, $this ) ); 2605 2605 $this->max_num_pages = ceil($this->found_posts / $q['posts_per_page']); 2606 2606 } 2607 2607 … … 2634 2634 } 2635 2635 2636 2636 if ( $this->is_preview && current_user_can( $edit_cap, $this->posts[0]->ID ) ) 2637 $this->posts[0] = apply_filters_ref_array('the_preview', array( $this->posts[0], &$this ));2637 $this->posts[0] = apply_filters_ref_array('the_preview', array( $this->posts[0], $this )); 2638 2638 } 2639 2639 2640 2640 // Put sticky posts at the top of the posts array … … 2688 2688 } 2689 2689 2690 2690 if ( !$q['suppress_filters'] ) 2691 $this->posts = apply_filters_ref_array('the_posts', array( $this->posts, &$this ) );2691 $this->posts = apply_filters_ref_array('the_posts', array( $this->posts, $this ) ); 2692 2692 2693 2693 $this->post_count = count($this->posts); 2694 2694 … … 2739 2739 $this->in_the_loop = true; 2740 2740 2741 2741 if ( $this->current_post == -1 ) // loop has just started 2742 do_action_ref_array('loop_start', array( &$this));2742 do_action_ref_array('loop_start', array($this)); 2743 2743 2744 2744 $post = $this->next_post(); 2745 2745 setup_postdata($post); … … 2760 2760 if ( $this->current_post + 1 < $this->post_count ) { 2761 2761 return true; 2762 2762 } elseif ( $this->current_post + 1 == $this->post_count && $this->post_count > 0 ) { 2763 do_action_ref_array('loop_end', array( &$this));2763 do_action_ref_array('loop_end', array($this)); 2764 2764 // Do some cleaning up after the loop 2765 2765 $this->rewind_posts(); 2766 2766 } -
wp-includes/rewrite.php
1562 1562 else 1563 1563 $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); 1564 1564 1565 do_action_ref_array('generate_rewrite_rules', array( &$this));1565 do_action_ref_array('generate_rewrite_rules', array($this)); 1566 1566 $this->rules = apply_filters('rewrite_rules_array', $this->rules); 1567 1567 1568 1568 return $this->rules; -
wp-includes/taxonomy.php
1118 1118 1119 1119 foreach ( $taxonomies as $taxonomy ) { 1120 1120 if ( ! taxonomy_exists($taxonomy) ) { 1121 $error = &new WP_Error('invalid_taxonomy', __('Invalid Taxonomy'));1121 $error = new WP_Error('invalid_taxonomy', __('Invalid Taxonomy')); 1122 1122 return $error; 1123 1123 } 1124 1124 } -
wp-includes/theme.php
1615 1615 if ( ! is_admin() ) 1616 1616 return; 1617 1617 require_once( ABSPATH . 'wp-admin/custom-background.php' ); 1618 $GLOBALS['custom_background'] = &new Custom_Background( $admin_header_callback, $admin_image_div_callback );1618 $GLOBALS['custom_background'] = new Custom_Background( $admin_header_callback, $admin_image_div_callback ); 1619 1619 add_action( 'admin_menu', array( &$GLOBALS['custom_background'], 'init' ) ); 1620 1620 } 1621 1621 -
wp-includes/user.php
518 518 } 519 519 520 520 if ( !empty( $qv['meta_query'] ) ) { 521 $clauses = call_user_func_array( '_get_meta_sql', array( $qv['meta_query'], 'user', $wpdb->users, 'ID', &$this ) );521 $clauses = call_user_func_array( '_get_meta_sql', array( $qv['meta_query'], 'user', $wpdb->users, 'ID', $this ) ); 522 522 $this->query_from .= $clauses['join']; 523 523 $this->query_where .= $clauses['where']; 524 524 } … … 531 531 $this->query_where .= " AND $wpdb->users.ID NOT IN ($ids)"; 532 532 } 533 533 534 do_action_ref_array( 'pre_user_query', array( &$this ) );534 do_action_ref_array( 'pre_user_query', array( $this ) ); 535 535 } 536 536 537 537 /** -
wp-includes/widgets.php
152 152 } 153 153 154 154 function _get_display_callback() { 155 return array( &$this, 'display_callback');155 return array($this, 'display_callback'); 156 156 } 157 157 158 158 function _get_update_callback() { 159 return array( &$this, 'update_callback');159 return array($this, 'update_callback'); 160 160 } 161 161 162 162 function _get_form_callback() { 163 return array( &$this, 'form_callback');163 return array($this, 'form_callback'); 164 164 } 165 165 166 166 /** Generate the actual widget content. … … 270 270 $return = $this->form($instance); 271 271 // add extra fields in the widget form - be sure to set $return to null if you add any 272 272 // 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) ); 274 274 } 275 275 return $return; 276 276 } … … 317 317 var $widgets = array(); 318 318 319 319 function WP_Widget_Factory() { 320 add_action( 'widgets_init', array( &$this, '_register_widgets' ), 100 );320 add_action( 'widgets_init', array( $this, '_register_widgets' ), 100 ); 321 321 } 322 322 323 323 function register($widget_class) { 324 $this->widgets[$widget_class] = &new $widget_class();324 $this->widgets[$widget_class] = new $widget_class(); 325 325 } 326 326 327 327 function unregister($widget_class) { -
wp-includes/wp-db.php
494 494 * @param string $dbhost MySQL database host 495 495 */ 496 496 function __construct( $dbuser, $dbpassword, $dbname, $dbhost ) { 497 register_shutdown_function( array( &$this, '__destruct' ) );497 register_shutdown_function( array( $this, '__destruct' ) ); 498 498 499 499 if ( WP_DEBUG ) 500 500 $this->show_errors(); … … 903 903 $query = str_replace( "'%s'", '%s', $query ); // in case someone mistakenly already singlequoted it 904 904 $query = str_replace( '"%s"', '%s', $query ); // doublequote unquoting 905 905 $query = preg_replace( '|(?<!%)%s|', "'%s'", $query ); // quote the strings, avoiding escaped strings like %%s 906 array_walk( $args, array( &$this, 'escape_by_ref' ) );906 array_walk( $args, array( $this, 'escape_by_ref' ) ); 907 907 return @vsprintf( $query, $args ); 908 908 } 909 909 -
wp-includes/wp-diff.php
426 426 $chars2 = count_chars($string2); 427 427 428 428 // L1-norm of difference vector. 429 $difference = array_sum( array_map( array( &$this, 'difference'), $chars1, $chars2 ) );429 $difference = array_sum( array_map( array($this, 'difference'), $chars1, $chars2 ) ); 430 430 431 431 // $string1 has zero length? Odd. Give huge penalty by not dividing. 432 432 if ( !$string1 ) -
wp-app.php
299 299 } 300 300 301 301 array_shift($matches); 302 call_user_func_array(array( &$this,$funcs[$method]), $matches);302 call_user_func_array(array($this,$funcs[$method]), $matches); 303 303 exit(); 304 304 } else { 305 305 // only allow what we have handlers for... -
wp-settings.php
216 216 * @global object $wp_the_query 217 217 * @since 2.0.0 218 218 */ 219 $wp_the_query = &new WP_Query();219 $wp_the_query = new WP_Query(); 220 220 221 221 /** 222 222 * Holds the reference to @see $wp_the_query … … 231 231 * @global object $wp_rewrite 232 232 * @since 1.5.0 233 233 */ 234 $wp_rewrite = &new WP_Rewrite();234 $wp_rewrite = new WP_Rewrite(); 235 235 236 236 /** 237 237 * WordPress Object 238 238 * @global object $wp 239 239 * @since 2.0.0 240 240 */ 241 $wp = &new WP();241 $wp = new WP(); 242 242 243 243 /** 244 244 * WordPress Widget Factory Object 245 245 * @global object $wp_widget_factory 246 246 * @since 2.8.0 247 247 */ 248 $wp_widget_factory = &new WP_Widget_Factory();248 $wp_widget_factory = new WP_Widget_Factory(); 249 249 250 250 do_action( 'setup_theme' ); 251 251 … … 270 270 * @global object $wp_locale 271 271 * @since 2.1.0 272 272 */ 273 $wp_locale = &new WP_Locale();273 $wp_locale = new WP_Locale(); 274 274 275 275 // Load the functions for the active theme, for both parent and child theme if applicable. 276 276 if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists( STYLESHEETPATH . '/functions.php' ) )