Changeset 5462
- Timestamp:
- 05/12/2007 10:06:31 PM (16 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/default-filters.php
r5363 r5462 174 174 add_action('mce_options', '_mce_set_direction'); 175 175 add_action('init', 'smilies_init', 5); 176 177 176 add_action( 'plugins_loaded', 'wp_maybe_load_widgets', 0 ); 177 add_action( 'shutdown', 'wp_ob_end_flush_all', 1); 178 178 179 179 ?> -
trunk/wp-includes/functions.php
r5460 r5462 1531 1531 } 1532 1532 1533 // For PHP 5.2, make sure all output buffers are flushed 1534 // before our singletons our destroyed. 1535 function wp_ob_end_flush_all() 1536 { 1537 while ( @ob_end_flush() ); 1538 } 1539 1533 1540 ?>
Note: See TracChangeset
for help on using the changeset viewer.