Assigning the return value of new by reference is deprecated. Props hakre. see #16767

git-svn-id: https://develop.svn.wordpress.org/trunk@17573 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2011-03-30 20:50:05 +00:00
parent 4b40ff5454
commit 48a439ac5b
1 changed files with 5 additions and 5 deletions

View File

@ -216,7 +216,7 @@ do_action( 'sanitize_comment_cookies' );
* @global object $wp_the_query
* @since 2.0.0
*/
$wp_the_query =& new WP_Query();
$wp_the_query = new WP_Query();
/**
* Holds the reference to @see $wp_the_query
@ -231,21 +231,21 @@ $wp_query =& $wp_the_query;
* @global object $wp_rewrite
* @since 1.5.0
*/
$wp_rewrite =& new WP_Rewrite();
$wp_rewrite = new WP_Rewrite();
/**
* WordPress Object
* @global object $wp
* @since 2.0.0
*/
$wp =& new WP();
$wp = new WP();
/**
* WordPress Widget Factory Object
* @global object $wp_widget_factory
* @since 2.8.0
*/
$wp_widget_factory =& new WP_Widget_Factory();
$wp_widget_factory = new WP_Widget_Factory();
do_action( 'setup_theme' );
@ -270,7 +270,7 @@ require( ABSPATH . WPINC . '/locale.php' );
* @global object $wp_locale
* @since 2.1.0
*/
$wp_locale =& new WP_Locale();
$wp_locale = new WP_Locale();
// Load the functions for the active theme, for both parent and child theme if applicable.
if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists( STYLESHEETPATH . '/functions.php' ) )