summaryrefslogtreecommitdiffstats
path: root/routers/user/user.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/user/user.go')
-rw-r--r--routers/user/user.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/routers/user/user.go b/routers/user/user.go
index 59177a47b9..2ce158b641 100644
--- a/routers/user/user.go
+++ b/routers/user/user.go
@@ -43,8 +43,7 @@ func Profile(params martini.Params, r render.Render, data base.TmplData, session
return
}
- data["Avatar"] = user.Avatar
- data["Username"] = user.Name
+ data["Owner"] = user
r.HTML(200, "user/profile", data)
}