aboutsummaryrefslogtreecommitdiff
path: root/profile.go
diff options
context:
space:
mode:
Diffstat (limited to 'profile.go')
-rw-r--r--profile.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/profile.go b/profile.go
index 58e7d96..bd7e299 100644
--- a/profile.go
+++ b/profile.go
@@ -8,7 +8,7 @@ import (
)
type ProfileTplData struct {
- User *LoggedUser
+ User *LoggedUser
ErrorMessage string
Success bool
Mail string
@@ -29,7 +29,7 @@ func handleProfile(w http.ResponseWriter, r *http.Request) {
}
data := &ProfileTplData{
- User: user,
+ User: user,
ErrorMessage: "",
Success: false,
}