diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-08 12:36:35 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-08 12:36:35 +0000 |
commit | 9806760c376dda33e168c4da48c6c4b8f0bd2c28 (patch) | |
tree | 05f27dc72520f8c265a082631293f9a451424483 /mod | |
parent | b717746b48b00e7e0a128a60ed2bf496f3806f18 (diff) | |
download | elgg-9806760c376dda33e168c4da48c6c4b8f0bd2c28.tar.gz elgg-9806760c376dda33e168c4da48c6c4b8f0bd2c28.tar.bz2 |
Group forums should work
git-svn-id: https://code.elgg.org/elgg/trunk@1792 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/groups/start.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mod/groups/start.php b/mod/groups/start.php index 3ab30cb6f..6993eeb99 100644 --- a/mod/groups/start.php +++ b/mod/groups/start.php @@ -328,10 +328,10 @@ // Register actions
global $CONFIG;
- register_action("groups/addtopic",false,$CONFIG->pluginspath . "groups/actions/forums/addtopic.php",true);
- register_action("groups/deletetopic",false,$CONFIG->pluginspath . "groups/actions/forums/deletetopic.php",true);
- register_action("groups/addpost",false,$CONFIG->pluginspath . "groups/actions/forums/addpost.php",true);
- register_action("groups/edittopic",false,$CONFIG->pluginspath . "groups/actions/forums/edittopic.php",true);
- register_action("groups/deletepost",false,$CONFIG->pluginspath . "groups/actions/forums/deletepost.php",true);
+ register_action("groups/addtopic",false,$CONFIG->pluginspath . "groups/actions/forums/addtopic.php");
+ register_action("groups/deletetopic",false,$CONFIG->pluginspath . "groups/actions/forums/deletetopic.php");
+ register_action("groups/addpost",false,$CONFIG->pluginspath . "groups/actions/forums/addpost.php");
+ register_action("groups/edittopic",false,$CONFIG->pluginspath . "groups/actions/forums/edittopic.php");
+ register_action("groups/deletepost",false,$CONFIG->pluginspath . "groups/actions/forums/deletepost.php");
?>
\ No newline at end of file |