Add missing widgets_uninstall function to widgets plugin

This commit is contained in:
Fabio Comuni 2011-05-23 10:50:22 +02:00
parent 3ea145fae7
commit f93106de3a
1 changed files with 5 additions and 2 deletions

View File

@ -7,12 +7,15 @@
function widgets_install() {
// we need some hooks, for the configuration and for sending tweets
register_hook('plugin_settings', 'addon/widgets/widgets.php', 'widgets_settings');
register_hook('plugin_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post');
logger("installed widgets");
}
function widgets_uninstall() {
unregister_hook('plugin_settings', 'addon/widgets/widgets.php', 'widgets_settings');
unregister_hook('plugin_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post');
}
function widgets_settings_post(){