Skip to content

Commit

Permalink
Made webex_id the actual URL instead of just the WID
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemintz committed Feb 14, 2012
1 parent 4f2962c commit 598df48
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deme_django/modules/community_forum/views.py
Expand Up @@ -12,7 +12,8 @@ def type_webexlogin_html(self):
participant = self.cur_agent.downcast()
if isinstance(participant, CommunityForumParticipant):
webex_id = participant.webex_id
url = 'https://air-min.webex.com/p.php?AT=LI&WID=%s' % webex_id
#url = 'https://air-min.webex.com/p.php?AT=LI&WID=%s' % webex_id
url = webex_id
return HttpResponseRedirect(url)
else:
return self.render_error('Not a participant', "You must be a CommunityForumParticipant to access this")
Expand Down

0 comments on commit 598df48

Please sign in to comment.