Changeset 5463
- Timestamp:
- 05/12/07 22:37:07 (1 year ago)
- Files:
-
- branches/2.2/wp-includes/default-filters.php (modified) (1 diff)
- branches/2.2/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.2/wp-includes/default-filters.php
r5363 r5463 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 ?> branches/2.2/wp-includes/functions.php
r5461 r5463 1512 1512 } 1513 1513 1514 // For PHP 5.2, make sure all output buffers are flushed 1515 // before our singletons our destroyed. 1516 function wp_ob_end_flush_all() 1517 { 1518 while ( @ob_end_flush() ); 1519 } 1520 1514 1521 ?>
