diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-05-31 11:01:24 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-05-31 11:01:24 +0200 |
commit | 380f65d309a6ab01d8e804f704962d5baef9820a (patch) | |
tree | 896fd1d53ccb3863380653d1b065c7fc4ef7a641 /boot.php | |
parent | 90f29590765f79fe4bd1e3d59e47ce932ec04d0d (diff) | |
parent | 670e83b30050201e3ac069c9dfa86a92aff2431d (diff) | |
download | volse-hubzilla-380f65d309a6ab01d8e804f704962d5baef9820a.tar.gz volse-hubzilla-380f65d309a6ab01d8e804f704962d5baef9820a.tar.bz2 volse-hubzilla-380f65d309a6ab01d8e804f704962d5baef9820a.zip |
Merge branch 'dev' into sabre32
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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']; } } } |