diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-24 00:50:54 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-24 00:50:54 +0000 |
commit | 9c1e6d6463937bdee2d1de9735463a69f8af305d (patch) | |
tree | 8ae66e2c9533ebf21fcf6c1b96be58b140681b7b /mod/messages | |
parent | 9f8dfe11118813e0f4c2808abb012171db61ec52 (diff) | |
download | elgg-9c1e6d6463937bdee2d1de9735463a69f8af305d.tar.gz elgg-9c1e6d6463937bdee2d1de9735463a69f8af305d.tar.bz2 |
Fixes #2655: Converted register_action to elgg_register_action throughout core
git-svn-id: http://code.elgg.org/elgg/trunk@7432 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/messages')
-rw-r--r-- | mod/messages/start.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/messages/start.php b/mod/messages/start.php index 027003284..bca8d3a91 100644 --- a/mod/messages/start.php +++ b/mod/messages/start.php @@ -324,5 +324,5 @@ elgg_register_plugin_hook_handler('container_permissions_check','object','messag // Register actions global $CONFIG; -register_action("messages/send",false,$CONFIG->pluginspath . "messages/actions/send.php"); -register_action("messages/delete",false,$CONFIG->pluginspath . "messages/actions/delete.php");
\ No newline at end of file +elgg_register_action("messages/send", $CONFIG->pluginspath . "messages/actions/send.php"); +elgg_register_action("messages/delete", $CONFIG->pluginspath . "messages/actions/delete.php");
\ No newline at end of file |