Skip to content
Snippets Groups Projects
Commit 9871f9ac authored by Richard Alam's avatar Richard Alam
Browse files

- rename loggedOutUrl to logoutURL to be consistent with the API

git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@4032 af16638f-c34d-0410-8cfa-b39d5352b314
parent d6836303
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ bigbluebutton.web.serverURL=http://192.168.0.120
#----------------------------------------------------
# URL where the logged-out participant will be redirected after sign-out.
# If commented-out, it returns to bigbluebutton.web.serverURL
# bigbluebutton.web.loggedOutUrl=http://www.bigbluebutton.org
# bigbluebutton.web.logoutURL=http://www.bigbluebutton.org
#------------------------------------------------------
# Setting to enable the old scheduling mechanism. This is temporary
......
......@@ -271,7 +271,14 @@ class PublicScheduledSessionController {
def signOut = {
def config = ConfigurationHolder.config
def hostURL = config.bigbluebutton.web.loggedOutUrl
def hostURL = config.bigbluebutton.web.logoutURL
// For backward compatibility. We renamed "loggedOutUrl" to
// "logoutURL" in 0.64 to be consistent with the API. Remove this
// in later iterations (ralam mar 26, 2010)
if ((hostURL == null) || (hostURL = "")) {
hostURL = config.bigbluebutton.web.loggedOutUrl
}
def meetingToken = session["conference"]
DynamicConference conf = dynamicConferenceService.getConferenceByToken(meetingToken)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment