diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-08-29 17:21:52 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-09-03 13:36:15 +0200 |
commit | 65608d7c9253d03ba5b56615f850f19f1fd90a49 (patch) | |
tree | c40d78e7f4ea21ebe90e2a7590a57126fe310998 /core/ajax | |
parent | dad53180bc6c554336c3a30abf64e45c242b2262 (diff) | |
download | nextcloud-server-65608d7c9253d03ba5b56615f850f19f1fd90a49.tar.gz nextcloud-server-65608d7c9253d03ba5b56615f850f19f1fd90a49.zip |
Use the public api to get event sources
Diffstat (limited to 'core/ajax')
-rw-r--r-- | core/ajax/update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ajax/update.php b/core/ajax/update.php index 627ada080c8..89ce2798378 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -4,7 +4,7 @@ require_once '../../lib/base.php'; if (OC::checkUpgrade(false)) { $l = new \OC_L10N('core'); - $eventSource = new OC_EventSource(); + $eventSource = \OC::$server->getEventSource(); $updater = new \OC\Updater(\OC_Log::$object); $updater->listen('\OC\Updater', 'maintenanceStart', function () use ($eventSource, $l) { $eventSource->send('success', (string)$l->t('Turned on maintenance mode')); |