Changeset 17573 for trunk/wp-settings.php
- Timestamp:
- 03/30/2011 08:50:05 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r17524 r17573 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 /** … … 232 232 * @since 1.5.0 233 233 */ 234 $wp_rewrite = &new WP_Rewrite();234 $wp_rewrite = new WP_Rewrite(); 235 235 236 236 /** … … 239 239 * @since 2.0.0 240 240 */ 241 $wp = &new WP();241 $wp = new WP(); 242 242 243 243 /** … … 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' ); … … 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.
Note: See TracChangeset
for help on using the changeset viewer.