Changeset 33214
- Timestamp:
- 11/19/11 14:47:24 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.4/lib/config/sfApplicationConfiguration.class.php
r33208 r33214 151 151 152 152 // compress output 153 if (!self::$coreLoaded )154 { 155 ob_start( sfConfig::get('sf_compressed') ? 'ob_gzhandler' : null);153 if (!self::$coreLoaded && sfConfig::get('sf_compressed')) 154 { 155 ob_start('ob_gzhandler'); 156 156 } 157 157 branches/1.4/lib/exception/sfException.class.php
r33208 r33214 101 101 } 102 102 103 ob_start(sfConfig::get('sf_compressed') ? 'ob_gzhandler' : null); 103 if (sfConfig::get('sf_compressed')) { 104 ob_start('ob_gzhandler'); 105 } 104 106 105 107 header('HTTP/1.0 500 Internal Server Error');