diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-29 11:39:44 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-29 11:39:44 -0700 |
commit | e0101d0c3f578b2e12e96c03740102634aa96289 (patch) | |
tree | d56e8d0c4e6cfc13b59f378a01853578a0285a3c /src | |
parent | 38589461ac9a95624559477c874125c412348043 (diff) | |
download | DotNetOpenAuth-e0101d0c3f578b2e12e96c03740102634aa96289.zip DotNetOpenAuth-e0101d0c3f578b2e12e96c03740102634aa96289.tar.gz DotNetOpenAuth-e0101d0c3f578b2e12e96c03740102634aa96289.tar.bz2 |
Fixed bug in .js that only showed up in IE.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenId/Extensions/SimpleRegistration/ClaimsResponse.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenId/Extensions/SimpleRegistration/ClaimsResponse.cs b/src/DotNetOpenId/Extensions/SimpleRegistration/ClaimsResponse.cs index e5e39ff..bf0a04b 100644 --- a/src/DotNetOpenId/Extensions/SimpleRegistration/ClaimsResponse.cs +++ b/src/DotNetOpenId/Extensions/SimpleRegistration/ClaimsResponse.cs @@ -239,7 +239,7 @@ namespace DotNetOpenId.Extensions.SimpleRegistration if (sreg.TryGetValue(Constants.timezone, out timeZone)) {
builder.Append(createAddFieldJS(Constants.timezone, timeZone));
}
-
+ if (builder[builder.Length - 1] == ',') builder.Length -= 1;
builder.Append("}");
return builder.ToString();
}
|