Fix lack of title on syntax page

This commit is contained in:
Eliot Whalan 2016-06-26 06:45:54 +10:00
parent 849b081fb8
commit a2a9504e46
1 changed files with 10 additions and 9 deletions

View File

@ -294,7 +294,6 @@ func pasteHandler(w http.ResponseWriter, r *http.Request) {
link := ADDRESS + "/raw/" + paste
download := ADDRESS + "/download/" + paste
clone := ADDRESS + "/clone/" + paste
if lang == "" {
p := &Page{
Title: title,
Body: []byte(s),
@ -303,13 +302,15 @@ func pasteHandler(w http.ResponseWriter, r *http.Request) {
Download: download,
Clone: clone,
}
if lang == "" {
err := templates.ExecuteTemplate(w, "paste.html", p)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
}
} else {
fmt.Fprintf(w, string(syntax), paste, paste, s, ADDRESS, download, link, clone)
fmt.Fprintf(w, string(syntax), p.Title, p.Title, s, p.Home, p.Download, p.Raw, p.Clone)
}
}