summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBartek Przybylski <bart.p.pl@gmail.com>2012-04-15 00:05:28 +0200
committerBartek Przybylski <bart.p.pl@gmail.com>2012-04-15 00:05:28 +0200
commitf241615693c7b72b8cc48a4ebb341fba63bef535 (patch)
treecc223a13f6064ef126689ef19a6d4f373ba72c44 /lib
parentba5e60e2e445077769c160b559d44c24ce4cc799 (diff)
downloadnextcloud-server-f241615693c7b72b8cc48a4ebb341fba63bef535.tar.gz
nextcloud-server-f241615693c7b72b8cc48a4ebb341fba63bef535.zip
fix getAppVersion error
Diffstat (limited to 'lib')
-rwxr-xr-xlib/app.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/app.php b/lib/app.php
index 1c4a752d8da..bd432109b23 100755
--- a/lib/app.php
+++ b/lib/app.php
@@ -482,7 +482,7 @@ class OC_App{
if ($currentVersion) {
if (version_compare($currentVersion, $installedVersion, '>')) {
OC_App::updateApp($app);
- OC_Appconfig::setValue($app,'installed_version',getAppVersion($app));
+ OC_Appconfig::setValue($app,'installed_version',OC_App::getAppVersion($app));
}
}
}