Move discovery response endpoint to "login" instead of "auth".

We now have a "login" endpoint that can be used for triggering
authentication. Make the discovery service send its response to that
page.

git-svn-id: https://modmellon.googlecode.com/svn/trunk/mod_mellon2@147 a716ebb1-153a-0410-b759-cfb97c6a1b53
This commit is contained in:
olavmrk 2012-01-12 13:30:50 +00:00
parent d08bab7148
commit 192940fa93
1 changed files with 1 additions and 1 deletions

View File

@ -2524,7 +2524,7 @@ static int am_auth_new_ticket(request_rec *r)
/* If discovery URL already has a ? we append a & */
sep = (strchr(cfg->discovery_url, '?')) ? "&" : "?";
return_url = apr_psprintf(r->pool, "%sauth?ReturnTo=%s",
return_url = apr_psprintf(r->pool, "%slogin?ReturnTo=%s",
endpoint,
am_urlencode(r->pool, relay_state));
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,