diff options
Diffstat (limited to 'mod/groups/topicposts.php')
-rw-r--r-- | mod/groups/topicposts.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mod/groups/topicposts.php b/mod/groups/topicposts.php new file mode 100644 index 000000000..d0137e2f5 --- /dev/null +++ b/mod/groups/topicposts.php @@ -0,0 +1,19 @@ +<?php +/** + * Elgg Groups topic posts page + * + * @package ElggGroups + * + * @deprecated 1.8 + */ + +// Load Elgg engine +require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); + +elgg_load_library('elgg:discussion'); + +$guid = get_input('topic'); + +register_error(elgg_echo('changebookmark')); + +forward("/discussion/view/$guid"); |