Skip to content
Snippets Groups Projects
Commit 37d772e4 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Fixed a minor issue

parent b7444330
No related branches found
No related tags found
No related merge requests found
...@@ -226,3 +226,6 @@ form.upload ...@@ -226,3 +226,6 @@ form.upload
.fake-input[contenteditable]:empty:before .fake-input[contenteditable]:empty:before
opacity: 0.4 opacity: 0.4
content: attr(placeholder) content: attr(placeholder)
.fake-input[contenteditable][data-multiline]
white-space: pre-line
\ No newline at end of file
...@@ -43,13 +43,6 @@ func pageImageDetail(ctx PageContext) http.Handler { ...@@ -43,13 +43,6 @@ func pageImageDetail(ctx PageContext) http.Handler {
panic(err) panic(err)
} }
println("Post data begin")
println(r.PostForm.Encode())
for key, value := range r.PostForm {
fmt.Printf("%s: %s", key, value)
}
println("Post data end")
switch r.PostFormValue("action") { switch r.PostFormValue("action") {
case "update": case "update":
_, err = ctx.Database.Exec( _, err = ctx.Database.Exec(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment