summaryrefslogtreecommitdiffstats
path: root/config/appconfig.php
diff options
context:
space:
mode:
Diffstat (limited to 'config/appconfig.php')
-rw-r--r--config/appconfig.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/config/appconfig.php b/config/appconfig.php
index 5292d35a7..ae8f268f5 100644
--- a/config/appconfig.php
+++ b/config/appconfig.php
@@ -175,17 +175,12 @@ class AppConfig {
$deps = $this->config['dependencies'];
- if(array_key_exists('php', $deps)) {
+ if (array_key_exists('php', $deps)) {
$msg .= $this->requireVersion($this->phpVersion, $deps['php'],
'PHP');
}
- if(array_key_exists('owncloud', $deps)) {
- $msg .= $this->requireVersion($this->ownCloudVersion,
- $deps['owncloud'], 'ownCloud');
- }
-
- if(array_key_exists('libs', $deps)) {
+ if (array_key_exists('libs', $deps)) {
foreach ($deps['libs'] as $lib => $versions) {
if(array_key_exists($lib, $this->installedExtensions)) {
$msg .= $this->requireVersion($this->installedExtensions[$lib],