summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2013-07-08 21:13:23 +0200
committerRobin Appelman <icewind@owncloud.com>2013-07-08 21:13:31 +0200
commita0d5ba116750bf78ca349ec1f3c9560aa12c3261 (patch)
treecb76df9f16f371b5d6d16d1da5e97d86b3fba03a
parent9cd7ecd5022ea799a18f58c890b2292b4e1e3c77 (diff)
downloadnextcloud-server-a0d5ba116750bf78ca349ec1f3c9560aa12c3261.tar.gz
nextcloud-server-a0d5ba116750bf78ca349ec1f3c9560aa12c3261.zip
fix typo
-rw-r--r--lib/updater.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/updater.php b/lib/updater.php
index 5a9f499f91b..df7332a96a9 100644
--- a/lib/updater.php
+++ b/lib/updater.php
@@ -10,7 +10,7 @@ namespace OC;
use OC\Hooks\BasicEmitter;
/**
- * Class that handels autoupdating of ownCloud
+ * Class that handles autoupdating of ownCloud
*
* Hooks provided in scope \OC\Updater
* - maintenanceStart()
@@ -52,7 +52,7 @@ class Updater extends BasicEmitter {
if (\OC_Appconfig::getValue('core', 'installedat', '') == '') {
\OC_Appconfig::setValue('core', 'installedat', microtime(true));
}
-;
+
$version = \OC_Util::getVersion();
$version['installed'] = \OC_Appconfig::getValue('core', 'installedat');
$version['updated'] = \OC_Appconfig::getValue('core', 'lastupdatedat');