diff options
Diffstat (limited to 'services')
-rw-r--r-- | services/context/org.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/services/context/org.go b/services/context/org.go index e420629372..132ce19a31 100644 --- a/services/context/org.go +++ b/services/context/org.go @@ -260,8 +260,7 @@ func HandleOrgAssignment(ctx *Context, args ...bool) { ctx.Data["IsFollowing"] = ctx.Doer != nil && user_model.IsFollowing(ctx, ctx.Doer.ID, ctx.ContextUser.ID) if len(ctx.ContextUser.Description) != 0 { content, err := markdown.RenderString(&markup.RenderContext{ - Metas: map[string]string{"mode": "document"}, - Ctx: ctx, + Ctx: ctx, }, ctx.ContextUser.Description) if err != nil { ctx.ServerError("RenderString", err) |