aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-05-31 10:59:11 +0200
committerMario Vavti <mario@mariovavti.com>2016-05-31 10:59:11 +0200
commit316fee93f7f7df92db514de961b74a71556fdb63 (patch)
tree896fd1d53ccb3863380653d1b065c7fc4ef7a641 /boot.php
parent1523e116b91824394244c4f76a9e105a3cecd5b6 (diff)
parent670e83b30050201e3ac069c9dfa86a92aff2431d (diff)
downloadvolse-hubzilla-316fee93f7f7df92db514de961b74a71556fdb63.tar.gz
volse-hubzilla-316fee93f7f7df92db514de961b74a71556fdb63.tar.bz2
volse-hubzilla-316fee93f7f7df92db514de961b74a71556fdb63.zip
Merge branch 'dev' into sabre32
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/boot.php b/boot.php
index a882be2eb..f1aa0cf9d 100755
--- a/boot.php
+++ b/boot.php
@@ -48,7 +48,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' );
define ( 'STD_VERSION', '1.7.1' );
define ( 'ZOT_REVISION', 1.1 );
-define ( 'DB_UPDATE_VERSION', 1169 );
+define ( 'DB_UPDATE_VERSION', 1170 );
/**
@@ -1522,11 +1522,11 @@ function check_config(&$a) {
if(count($installed)) {
foreach($installed as $i) {
- if(! in_array($i['name'], $plugins_arr)) {
- unload_plugin($i['name']);
+ if(! in_array($i['aname'], $plugins_arr)) {
+ unload_plugin($i['aname']);
}
else {
- $installed_arr[] = $i['name'];
+ $installed_arr[] = $i['aname'];
}
}
}