-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(upgrade): exception when upgrading from 27 to 28
- the Application class is loaded before replacing the files - therefore old code is execute, incompatible with 28, which has to be loaded in the constructor as we cannot move to IBootstrap yet - deprecated components are replaced so that an upgrade will not break again on 28 Signed-off-by: Arthur Schiwon <[email protected]>
- Loading branch information
Showing
2 changed files
with
19 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
namespace OCA\Files\Event { | ||
use OCP\EventDispatcher\Event; | ||
class LoadAdditionalScriptsEvent extends Event { | ||
} | ||
} | ||
|