Browse Source

Adding mb_output_handler as the default callback for output buffering, Thanks @syntaqx

Ben Corlett 12 years ago
parent
commit
7f0d709b3b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/core.php

+ 1 - 1
laravel/core.php

@@ -29,7 +29,7 @@ define('MB_STRING', (int) function_exists('mb_get_info'));
 |
 */
 
-ob_start();
+ob_start('mb_output_handler');
 
 /*
 |--------------------------------------------------------------------------