Changeset 145 for trunk/wp-config.php
- Timestamp:
- Mar 31, 2009, 7:00:25 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-config.php
r137 r145 85 85 require_once(ABSPATH.'wp-settings.php'); 86 86 wp(); 87 ob_start();87 if (is_wordpress_style()) { 88 88 require_once( ABSPATH . WPINC . '/template-loader.php' ); 89 $wp_output = ob_get_contents(); 90 ob_end_clean(); 91 require_once( ABSPATH .'/include/xpress_render.php' ); 92 xpress_render($wp_output); 89 } else { 90 ob_start(); 91 require_once( ABSPATH . WPINC . '/template-loader.php' ); 92 $wp_output = ob_get_contents(); 93 ob_end_clean(); 94 require_once( ABSPATH .'/include/xpress_render.php' ); 95 xpress_render($wp_output); 96 } 97 93 98 94 99 //When there is no block cache, and an optional block is different, cache is refreshed.
Note: See TracChangeset
for help on using the changeset viewer.