diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-06-25 19:34:39 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-06-25 19:49:18 +0200 |
commit | b1e778d5fd05ae7224e73dc2cdc72a94c4f8b55c (patch) | |
tree | dfe56460d19a47a825cc33f6a329aca3258ae76a /lib/private/repair.php | |
parent | c6bcb07f8373b3a1515fc2f26872a0256ee3666d (diff) | |
download | nextcloud-server-b1e778d5fd05ae7224e73dc2cdc72a94c4f8b55c.tar.gz nextcloud-server-b1e778d5fd05ae7224e73dc2cdc72a94c4f8b55c.zip |
Moved office mimetype update to a repair step
Diffstat (limited to 'lib/private/repair.php')
-rw-r--r-- | lib/private/repair.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/private/repair.php b/lib/private/repair.php index 23d1c2b831e..93547fd6750 100644 --- a/lib/private/repair.php +++ b/lib/private/repair.php @@ -68,7 +68,9 @@ class Repair extends BasicEmitter { * @return array of RepairStep instances */ public static function getRepairSteps() { - return array(); + return array( + new \OC\Repair\RepairMimeTypes() + ); } /** @@ -78,6 +80,7 @@ class Repair extends BasicEmitter { * @return array of RepairStep instances */ public static function getBeforeUpgradeRepairSteps() { - return array(); + return array( + ); } } |