diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-09-09 15:18:57 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-09-10 10:22:40 +0200 |
commit | 8e2acb148243d494f2c6ccb655f904f2261870f5 (patch) | |
tree | 4ef328c964ae146b17b89c4342dc2ae8d5878e9d /lib/repair/innodb.php | |
parent | dc99fd768ac99c380f1110c7bd4dd84d03256cd8 (diff) | |
download | nextcloud-server-8e2acb148243d494f2c6ccb655f904f2261870f5.tar.gz nextcloud-server-8e2acb148243d494f2c6ccb655f904f2261870f5.zip |
repair search lucene before installing
Diffstat (limited to 'lib/repair/innodb.php')
-rw-r--r-- | lib/repair/innodb.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/repair/innodb.php b/lib/repair/innodb.php index 6b795a749e9..0e13c30be95 100644 --- a/lib/repair/innodb.php +++ b/lib/repair/innodb.php @@ -23,7 +23,7 @@ class InnoDB extends BasicEmitter implements \OC\RepairStep { public function run() { $connection = \OC_DB::getConnection(); if (!$connection->getDatabasePlatform() instanceof MySqlPlatform) { - $this->emit('\OC\Repair', 'info', array('Not a mysql database -> nothing to no')); + $this->emit('\OC\Repair', 'info', array('Not a mysql database -> nothing to do')); return; } |