diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-04-15 11:05:55 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-04-15 11:05:55 +0200 |
commit | c5b8a3eb94be7f7de948215cfdd24ee06690a07a (patch) | |
tree | a868796bd4eac9372d3148f2494a17d4cc904b1c | |
parent | f241615693c7b72b8cc48a4ebb341fba63bef535 (diff) | |
download | nextcloud-server-c5b8a3eb94be7f7de948215cfdd24ee06690a07a.tar.gz nextcloud-server-c5b8a3eb94be7f7de948215cfdd24ee06690a07a.zip |
fix installing shipped apps
-rw-r--r-- | lib/installer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/installer.php b/lib/installer.php index 67947279e70..6edf4ce1b74 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -297,7 +297,7 @@ class OC_Installer{ include(OC::$APPSROOT."/apps/$app/appinfo/install.php"); } $info=OC_App::getAppInfo($app); - OC_Appconfig::setValue($app,'installed_version',OC_App::getAppVersion('version')); + OC_Appconfig::setValue($app,'installed_version',OC_App::getAppVersion($app)); return $info; } } |