Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F871952
D50.id291.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
Thu, May 8, 6:28 AM
Size
445 B
Mime Type
text/x-diff
Expires
Fri, May 9, 6:28 AM (7 h, 31 m)
Engine
blob
Format
Raw Data
Handle
617415
Attached To
D50: INP-1413 - Don't do full Application Init during deployment
D50.id291.diff
View Options
Index: branches/5.2.x/core/kernel/application.php
===================================================================
--- branches/5.2.x/core/kernel/application.php
+++ branches/5.2.x/core/kernel/application.php
@@ -381,7 +381,9 @@
$this->InitDone = true;
- $this->HandleEvent(new kEvent('adm:OnStartup'));
+ if ( PHP_SAPI !== 'cli' && !$this->isAdmin ) {
+ $this->HandleEvent(new kEvent('adm:OnStartup'));
+ }
return true;
}
Event Timeline
Log In to Comment