diff options
author | Friendika <info@friendika.com> | 2011-02-23 19:09:49 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-23 19:09:49 -0800 |
commit | 953d8ccb546997bb0201cc60e118dd4b80b38c3c (patch) | |
tree | 5290c6032c93c9a384d44fb5ff746ce5f8f739d9 /addon | |
parent | 834439b7300584350ac1676f3f43f5511a4b509b (diff) | |
download | volse-hubzilla-953d8ccb546997bb0201cc60e118dd4b80b38c3c.tar.gz volse-hubzilla-953d8ccb546997bb0201cc60e118dd4b80b38c3c.tar.bz2 volse-hubzilla-953d8ccb546997bb0201cc60e118dd4b80b38c3c.zip |
added hook but forgot to register
Diffstat (limited to 'addon')
-rw-r--r-- | addon/statusnet/statusnet.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/addon/statusnet/statusnet.php b/addon/statusnet/statusnet.php index e595ad7b5..545518622 100644 --- a/addon/statusnet/statusnet.php +++ b/addon/statusnet/statusnet.php @@ -53,6 +53,8 @@ function statusnet_install() { register_hook('plugin_settings', 'addon/statusnet/statusnet.php', 'statusnet_settings'); register_hook('plugin_settings_post', 'addon/statusnet/statusnet.php', 'statusnet_settings_post'); register_hook('post_local_end', 'addon/statusnet/statusnet.php', 'statusnet_post_hook'); + register_hook('jot_networks', 'addon/statusnet/statusnet.php', 'statusnet_jot_nets'); + logger("installed statusnet"); } @@ -61,6 +63,7 @@ function statusnet_uninstall() { unregister_hook('plugin_settings', 'addon/statusnet/statusnet.php', 'statusnet_settings'); unregister_hook('plugin_settings_post', 'addon/statusnet/statusnet.php', 'statusnet_settings_post'); unregister_hook('post_local_end', 'addon/statusnet/statusnet.php', 'statusnet_post_hook'); + unregister_hook('jot_networks', 'addon/statusnet/statusnet.php', 'statusnet_jot_nets'); } function statusnet_jot_nets(&$a,&$b) { |