diff options
author | redmatrix <git@macgirvin.com> | 2016-05-30 19:44:30 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-30 19:44:30 -0700 |
commit | 6602ff83dd54d0e17c985a5f527654fc2ed83eea (patch) | |
tree | 920d7fa37f10786e806e847cf6b59b20a42e7cb8 /boot.php | |
parent | 490ab9e2c593275c0cf3d705a4ae52c6a22db4d9 (diff) | |
download | volse-hubzilla-6602ff83dd54d0e17c985a5f527654fc2ed83eea.tar.gz volse-hubzilla-6602ff83dd54d0e17c985a5f527654fc2ed83eea.tar.bz2 volse-hubzilla-6602ff83dd54d0e17c985a5f527654fc2ed83eea.zip |
start removing reserved words from database column names (this run: addon and hook)
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']; } } } |