Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1171902
D1.id3.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Sep 28, 6:13 PM
Size
603 B
Mime Type
text/x-diff
Expires
Mon, Sep 29, 6:13 PM (21 h, 42 m)
Engine
blob
Format
Raw Data
Handle
759417
Attached To
D1: INP-1351 - Don't change user sorting on search result page
D1.id3.diff
View Options
Index: core/kernel/application.php
===================================================================
--- core/kernel/application.php
+++ core/kernel/application.php
@@ -2735,14 +2735,16 @@
*/
public function ApplicationDie($message = '')
{
- $message = ob_get_clean() . $message;
+ while ( ob_get_level() ) {
+ ob_end_clean();
+ }
if ( $this->isDebugMode() ) {
$message .= $this->Debugger->printReport(true);
}
- echo $this->UseOutputCompression() ? gzencode($message, DBG_COMPRESSION_LEVEL) : $message;
- exit;
+ $this->HTML = $message;
+ $this->_outputPage();
}
/**
Event Timeline
Log In to Comment