aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/installer.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-02-10 11:04:12 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-02-10 17:24:14 +0100
commit8b165c5ed59659fce5884c2091774b33b6b857d8 (patch)
tree138be5c9f0c17c74491dc2e066cdb699a2cdd5a9 /lib/private/installer.php
parent9a2c517ca8eaf25bf142696e1479355112b1f108 (diff)
downloadnextcloud-server-8b165c5ed59659fce5884c2091774b33b6b857d8.tar.gz
nextcloud-server-8b165c5ed59659fce5884c2091774b33b6b857d8.zip
No longer evaluate appinfo/version
Diffstat (limited to 'lib/private/installer.php')
-rw-r--r--lib/private/installer.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/private/installer.php b/lib/private/installer.php
index f30db9ca659..1e4bb968929 100644
--- a/lib/private/installer.php
+++ b/lib/private/installer.php
@@ -390,16 +390,11 @@ class OC_Installer{
}
// check if the ocs version is the same as the version in info.xml/version
- $versionFile= $extractDir.'/appinfo/version';
- if(is_file($versionFile)) {
- $version = trim(file_get_contents($versionFile));
- }else{
- $version = trim($info['version']);
- }
+ $version = trim($info['version']);
if(isset($data['appdata']['version']) && $version<>trim($data['appdata']['version'])) {
OC_Helper::rmdirr($extractDir);
- throw new \Exception($l->t("App can't be installed because the version in info.xml/version is not the same as the version reported from the app store"));
+ throw new \Exception($l->t("App can't be installed because the version in info.xml is not the same as the version reported from the app store"));
}
return $info;