diff options
author | friendica <info@friendica.com> | 2012-04-30 23:07:52 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-30 23:07:52 -0700 |
commit | d48cd0f9a3210c14bb98a502188358982261d9df (patch) | |
tree | d5b13e587c7b8f2d140b559f3a67fd299afdedd3 /include/plugin.php | |
parent | 25afec0f81961665717e159aba216d1e9d9f9d86 (diff) | |
download | volse-hubzilla-d48cd0f9a3210c14bb98a502188358982261d9df.tar.gz volse-hubzilla-d48cd0f9a3210c14bb98a502188358982261d9df.tar.bz2 volse-hubzilla-d48cd0f9a3210c14bb98a502188358982261d9df.zip |
hidden plugins (add .hidden file to dir)
Diffstat (limited to 'include/plugin.php')
-rw-r--r-- | include/plugin.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/plugin.php b/include/plugin.php index 8196e8756..4ff78a8b4 100644 --- a/include/plugin.php +++ b/include/plugin.php @@ -5,7 +5,7 @@ if (! function_exists('uninstall_plugin')){ function uninstall_plugin($plugin){ logger("Addons: uninstalling " . $plugin); - q("DELETE FROM `addon` WHERE `name` = '%s' LIMIT 1", + q("DELETE FROM `addon` WHERE `name` = '%s' ", dbesc($plugin) ); @@ -37,6 +37,16 @@ function install_plugin($plugin) { intval($t), $plugin_admin ); + + // we can add the following with the previous SQL + // once most site tables have been updated. + // This way the system won't fall over dead during the update. + + if(file_exists('addon/' . $plugin . '/.hidden')) { + q("update addon set hidden = 1 where name = '%s' limit 1", + dbesc($plugin) + ); + } return true; } else { |