diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-10-24 10:16:32 -0700 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-24 10:16:32 -0700 |
commit | 515e1b467e58337067ee3a4a8945f449d3c2ef3a (patch) | |
tree | 06ed218ada64bb696e9c6ce22baa79b827df8530 /lib/setup.php | |
parent | 7454186806d8ebc440f7604d1ff517433bdd9faa (diff) | |
parent | 561cbb2de69a31934c22fc28332b5a14b6fcfc68 (diff) | |
download | nextcloud-server-515e1b467e58337067ee3a4a8945f449d3c2ef3a.tar.gz nextcloud-server-515e1b467e58337067ee3a4a8945f449d3c2ef3a.zip |
Merge pull request #81 from fmms/master
Codestyle add some needed spaces.
Diffstat (limited to 'lib/setup.php')
-rw-r--r-- | lib/setup.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/setup.php b/lib/setup.php index 3c92e9c5599..62d31fd544f 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -92,7 +92,7 @@ class OC_Setup { //write the config file OC_Config::setValue('datadirectory', $datadir); OC_Config::setValue('dbtype', $dbtype); - OC_Config::setValue('version',implode('.',OC_Util::getVersion())); + OC_Config::setValue('version', implode('.',OC_Util::getVersion())); if($dbtype == 'mysql') { $dbuser = $options['dbuser']; $dbpass = $options['dbpass']; @@ -376,8 +376,8 @@ class OC_Setup { } if(count($error) == 0) { - OC_Appconfig::setValue('core', 'installedat',microtime(true)); - OC_Appconfig::setValue('core', 'lastupdatedat',microtime(true)); + OC_Appconfig::setValue('core', 'installedat', microtime(true)); + OC_Appconfig::setValue('core', 'lastupdatedat', microtime(true)); OC_Group::createGroup('admin'); OC_Group::addToGroup($username, 'admin'); |