Changeset 4471
- Timestamp:
- 11/15/06 22:29:20 (2 years ago)
- Files:
-
- branches/2.0/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/wp-includes/functions.php
r4410 r4471 2164 2164 } 2165 2165 2166 function load_template($ file) {2166 function load_template($_template_file) { 2167 2167 global $posts, $post, $wp_did_header, $wp_did_template_redirect, $wp_query, 2168 2168 $wp_rewrite, $wpdb; 2169 2169 2170 extract($wp_query->query_vars );2171 2172 require_once($ file);2170 extract($wp_query->query_vars, EXTR_SKIP); 2171 2172 require_once($_template_file); 2173 2173 } 2174 2174
