commandocoding / openid-selector

Automatically exported from code.google.com/p/openid-selector
0 stars 0 forks source link

aol url wrong #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. attempt to login with aol
2. enter screenname
3. aol's openid login page has "screenname/" which doesn't work

What is the expected output? What do you see instead?
"screenname"

I fixed it by changing the javascript like this:
--- a/openid-selector/js/openid-jquery.js
+++ b/openid-selector/js/openid-jquery.js
@@ -17,7 +17,7 @@ var providers_large = {
     aol: {
         name: 'AOL',
         label: 'Enter your AOL screenname.',
-        url: 'http://openid.aol.com/{username}/'
+        url: 'http://openid.aol.com/{username}'
     },
     openid: {
         name: 'OpenID',

Original issue reported on code.google.com by brondsem@gmail.com on 8 Dec 2008 at 3:52

GoogleCodeExporter commented 9 years ago

Original comment by david.j....@googlemail.com on 29 Apr 2009 at 7:21