mirror of https://github.com/gogs/gogs.git
wiki: handle '#' in edit page (#3767)
parent
94f91543b6
commit
32a868d431
2
gogs.go
2
gogs.go
|
@ -16,7 +16,7 @@ import (
|
|||
"github.com/gogits/gogs/modules/setting"
|
||||
)
|
||||
|
||||
const APP_VER = "0.9.147.0214"
|
||||
const APP_VER = "0.9.148.0215"
|
||||
|
||||
func init() {
|
||||
setting.AppVer = APP_VER
|
||||
|
|
|
@ -1 +1 @@
|
|||
0.9.147.0214
|
||||
0.9.148.0215
|
|
@ -11,7 +11,7 @@
|
|||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
<form class="ui form" action="{{.Link}}" method="post">
|
||||
<form class="ui form" action="{{EscapePound .Link}}" method="post">
|
||||
{{.CsrfTokenHtml}}
|
||||
<input type="hidden" name="old_title" value="{{.old_title}}">
|
||||
<div class="field {{if .Err_Title}}error{{end}}">
|
||||
|
|
Loading…
Reference in New Issue