@ -1138,6 +1138,7 @@ func ViewIssue(ctx *context.Context) {
URLPrefix : ctx . Repo . RepoLink ,
URLPrefix : ctx . Repo . RepoLink ,
Metas : ctx . Repo . Repository . ComposeMetas ( ) ,
Metas : ctx . Repo . Repository . ComposeMetas ( ) ,
GitRepo : ctx . Repo . GitRepo ,
GitRepo : ctx . Repo . GitRepo ,
Ctx : ctx ,
} , issue . Content )
} , issue . Content )
if err != nil {
if err != nil {
ctx . ServerError ( "RenderString" , err )
ctx . ServerError ( "RenderString" , err )
@ -1303,6 +1304,7 @@ func ViewIssue(ctx *context.Context) {
URLPrefix : ctx . Repo . RepoLink ,
URLPrefix : ctx . Repo . RepoLink ,
Metas : ctx . Repo . Repository . ComposeMetas ( ) ,
Metas : ctx . Repo . Repository . ComposeMetas ( ) ,
GitRepo : ctx . Repo . GitRepo ,
GitRepo : ctx . Repo . GitRepo ,
Ctx : ctx ,
} , comment . Content )
} , comment . Content )
if err != nil {
if err != nil {
ctx . ServerError ( "RenderString" , err )
ctx . ServerError ( "RenderString" , err )
@ -1379,6 +1381,7 @@ func ViewIssue(ctx *context.Context) {
URLPrefix : ctx . Repo . RepoLink ,
URLPrefix : ctx . Repo . RepoLink ,
Metas : ctx . Repo . Repository . ComposeMetas ( ) ,
Metas : ctx . Repo . Repository . ComposeMetas ( ) ,
GitRepo : ctx . Repo . GitRepo ,
GitRepo : ctx . Repo . GitRepo ,
Ctx : ctx ,
} , comment . Content )
} , comment . Content )
if err != nil {
if err != nil {
ctx . ServerError ( "RenderString" , err )
ctx . ServerError ( "RenderString" , err )
@ -1739,6 +1742,7 @@ func UpdateIssueContent(ctx *context.Context) {
URLPrefix : ctx . FormString ( "context" ) ,
URLPrefix : ctx . FormString ( "context" ) ,
Metas : ctx . Repo . Repository . ComposeMetas ( ) ,
Metas : ctx . Repo . Repository . ComposeMetas ( ) ,
GitRepo : ctx . Repo . GitRepo ,
GitRepo : ctx . Repo . GitRepo ,
Ctx : ctx ,
} , issue . Content )
} , issue . Content )
if err != nil {
if err != nil {
ctx . ServerError ( "RenderString" , err )
ctx . ServerError ( "RenderString" , err )
@ -2170,6 +2174,7 @@ func UpdateCommentContent(ctx *context.Context) {
URLPrefix : ctx . FormString ( "context" ) ,
URLPrefix : ctx . FormString ( "context" ) ,
Metas : ctx . Repo . Repository . ComposeMetas ( ) ,
Metas : ctx . Repo . Repository . ComposeMetas ( ) ,
GitRepo : ctx . Repo . GitRepo ,
GitRepo : ctx . Repo . GitRepo ,
Ctx : ctx ,
} , comment . Content )
} , comment . Content )
if err != nil {
if err != nil {
ctx . ServerError ( "RenderString" , err )
ctx . ServerError ( "RenderString" , err )