From 9c1e6d6463937bdee2d1de9735463a69f8af305d Mon Sep 17 00:00:00 2001 From: ewinslow Date: Wed, 24 Nov 2010 00:50:54 +0000 Subject: 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 --- mod/messageboard/start.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod/messageboard') diff --git a/mod/messageboard/start.php b/mod/messageboard/start.php index 0cd546573..56dfce1bd 100644 --- a/mod/messageboard/start.php +++ b/mod/messageboard/start.php @@ -88,5 +88,5 @@ function messageboard_add($poster, $owner, $message, $access_id = ACCESS_PUBLIC) elgg_register_event_handler('init', 'system', 'messageboard_init'); // Register actions -register_action("messageboard/add", FALSE, $CONFIG->pluginspath . "messageboard/actions/add.php"); -register_action("messageboard/delete", FALSE, $CONFIG->pluginspath . "messageboard/actions/delete.php"); +elgg_register_action("messageboard/add", $CONFIG->pluginspath . "messageboard/actions/add.php"); +elgg_register_action("messageboard/delete", $CONFIG->pluginspath . "messageboard/actions/delete.php"); -- cgit v1.2.3