aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/middleware/context.go13
1 files changed, 8 insertions, 5 deletions
diff --git a/modules/middleware/context.go b/modules/middleware/context.go
index 5ca726d9..31678237 100644
--- a/modules/middleware/context.go
+++ b/modules/middleware/context.go
@@ -60,12 +60,15 @@ func InitContext() martini.Handler {
// Get user from session if logined.
user := auth.SignedInUser(session)
ctx.User = user
- ctx.IsSigned = ctx != nil
+ ctx.IsSigned = user != nil
- data["IsSigned"] = true
- data["SignedUser"] = user
- data["SignedUserId"] = user.Id
- data["SignedUserName"] = user.LowerName
+ data["IsSigned"] = ctx.IsSigned
+
+ if user != nil {
+ data["SignedUser"] = user
+ data["SignedUserId"] = user.Id
+ data["SignedUserName"] = user.LowerName
+ }
c.Map(ctx)
c.Map(data)