diff options
Diffstat (limited to 'mod/messageboard/start.php')
-rw-r--r-- | mod/messageboard/start.php | 4 |
1 files changed, 2 insertions, 2 deletions
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"); |