diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-08 14:02:43 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-08 14:02:43 +0000 |
commit | 6292a156060339a4794c6feec42f53302b777aed (patch) | |
tree | 3b0cfaa1e4ba479999219ad2d4d53f01e73b30bf /mod/groups/topicposts.php | |
parent | b8d90e7907f0790d4811fe7a617488d54664721c (diff) | |
download | elgg-6292a156060339a4794c6feec42f53302b777aed.tar.gz elgg-6292a156060339a4794c6feec42f53302b777aed.tar.bz2 |
Removing some wsod issues
git-svn-id: https://code.elgg.org/elgg/trunk@1794 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/topicposts.php')
-rw-r--r-- | mod/groups/topicposts.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/groups/topicposts.php b/mod/groups/topicposts.php index 34886f3fe..941e962ad 100644 --- a/mod/groups/topicposts.php +++ b/mod/groups/topicposts.php @@ -14,8 +14,8 @@ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
//get_input('group_guid');
- set_page_owner((int)get_input('group_guid'));
- if (!(page_owner_entity() instanceof ElggGroup)) forward();
+ set_page_owner((int)get_input('group_guid'));
+ if (!(page_owner_entity() instanceof ElggGroup)) forward();
// get the entity from id
$topic = get_entity(get_input('topic'));
|