diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-13 16:02:34 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-13 16:02:34 -0800 |
commit | a3538a47a43eb00461f68fb542097871f732429a (patch) | |
tree | 62cca82e4829018298031344f25aeb05ce6cba48 | |
parent | 39dacc2ff566232076eb4dc39f6d57e1ced4913e (diff) | |
download | DotNetOpenAuth-a3538a47a43eb00461f68fb542097871f732429a.zip DotNetOpenAuth-a3538a47a43eb00461f68fb542097871f732429a.tar.gz DotNetOpenAuth-a3538a47a43eb00461f68fb542097871f732429a.tar.bz2 |
Fixed compile-time error after 95e5314971.
-rw-r--r-- | projecttemplates/WebFormsRelyingParty/Site.Master | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/Site.Master b/projecttemplates/WebFormsRelyingParty/Site.Master index 3cf191e..8a4cfd2 100644 --- a/projecttemplates/WebFormsRelyingParty/Site.Master +++ b/projecttemplates/WebFormsRelyingParty/Site.Master @@ -16,7 +16,7 @@ <asp:LoginView runat="server"> <LoggedInTemplate> <% - var authToken = Database.DataContext.AuthenticationToken.Include("User").First(token => token.ClaimedIdentifier == Page.User.Identity.Name); + var authToken = Database.DataContext.AuthenticationTokens.Include("User").First(token => token.ClaimedIdentifier == Page.User.Identity.Name); if (!string.IsNullOrEmpty(authToken.User.EmailAddress)) { Response.Write(HttpUtility.HtmlEncode(authToken.User.EmailAddress)); } else if (!string.IsNullOrEmpty(authToken.User.FirstName)) { |