diff options
author | root <root@diekershoff.homeunix.net> | 2011-01-06 08:37:44 +0100 |
---|---|---|
committer | root <root@diekershoff.homeunix.net> | 2011-01-06 08:37:44 +0100 |
commit | 05708c9a8d6f6a1cbd29a208f1372403fcff2058 (patch) | |
tree | a04c34f91904f83a8fdc6cad7af5eddf1a766092 /addon/randplace/randplace.php | |
parent | 011e0c3f8142e3976a4d386fce066c802d4727ab (diff) | |
parent | 95ec0767d88efa7d8290db875b1c0f72542d9b68 (diff) | |
download | volse-hubzilla-05708c9a8d6f6a1cbd29a208f1372403fcff2058.tar.gz volse-hubzilla-05708c9a8d6f6a1cbd29a208f1372403fcff2058.tar.bz2 volse-hubzilla-05708c9a8d6f6a1cbd29a208f1372403fcff2058.zip |
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'addon/randplace/randplace.php')
-rw-r--r-- | addon/randplace/randplace.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addon/randplace/randplace.php b/addon/randplace/randplace.php index 2f0ff038b..d7ea65c9d 100644 --- a/addon/randplace/randplace.php +++ b/addon/randplace/randplace.php @@ -43,7 +43,7 @@ function randplace_install() { */ register_hook('plugin_settings', 'addon/randplace/randplace.php', 'randplace_settings'); - register_hook('settings_post', 'addon/randplace/randplace.php', 'randplace_settings_post'); + register_hook('plugin_settings_post', 'addon/randplace/randplace.php', 'randplace_settings_post'); logger("installed randplace"); } @@ -61,7 +61,7 @@ function randplace_uninstall() { unregister_hook('post_local', 'addon/randplace/randplace.php', 'randplace_post_hook'); unregister_hook('plugin_settings', 'addon/randplace/randplace.php', 'randplace_settings'); - unregister_hook('settings_post', 'addon/randplace/randplace.php', 'randplace_settings_post'); + unregister_hook('plugin_settings_post', 'addon/randplace/randplace.php', 'randplace_settings_post'); logger("removed randplace"); |