Changeset 26996 for trunk/src/wp-settings.php
- Timestamp:
- 01/22/2014 08:24:50 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-settings.php
r26008 r26996 249 249 * @since 2.0.0 250 250 */ 251 $ wp_the_query= new WP_Query();251 $GLOBALS['wp_the_query'] = new WP_Query(); 252 252 253 253 /** … … 257 257 * @since 1.5.0 258 258 */ 259 $ wp_query = $wp_the_query;259 $GLOBALS['wp_query'] = $GLOBALS['wp_the_query']; 260 260 261 261 /** … … 271 271 * @since 2.0.0 272 272 */ 273 $ wp= new WP();273 $GLOBALS['wp'] = new WP(); 274 274 275 275 /**
Note: See TracChangeset
for help on using the changeset viewer.