diff options
author | Frank Karlitschek <frank@devel.(none)> | 2011-11-19 12:02:34 +0100 |
---|---|---|
committer | Frank Karlitschek <frank@devel.(none)> | 2011-11-19 12:02:34 +0100 |
commit | 7df9d934caecfdbc6e316d79e37d37ebd52bdda6 (patch) | |
tree | 02f67da8816e8c6364539f9ca6e3229af97b944a /lib | |
parent | 949bd2c47a47196f767aa8a6a8e70ae0b834ad90 (diff) | |
download | nextcloud-server-7df9d934caecfdbc6e316d79e37d37ebd52bdda6.tar.gz nextcloud-server-7df9d934caecfdbc6e316d79e37d37ebd52bdda6.zip |
second half of the updating stuff
Diffstat (limited to 'lib')
-rw-r--r-- | lib/config.php | 1 | ||||
-rw-r--r-- | lib/setup.php | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/config.php b/lib/config.php index 2c82036257f..8d03271b3ea 100644 --- a/lib/config.php +++ b/lib/config.php @@ -94,7 +94,6 @@ class OC_Config{ // Write changes self::writeData(); - return true; } diff --git a/lib/setup.php b/lib/setup.php index e2d56ddaf4a..8afe0070e9b 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -77,6 +77,8 @@ class OC_Setup { OC_Config::setValue('datadirectory', $datadir); OC_Config::setValue('dbtype', $dbtype); OC_Config::setValue('version',implode('.',OC_Util::getVersion())); + OC_Config::setValue('installedat',microtime(true)); + OC_Config::setValue('lastupdatedat',microtime(true)); if($dbtype == 'mysql') { $dbuser = $options['dbuser']; $dbpass = $options['dbpass']; |