projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e59aabc
)
Return error if shortcode template.Tree is nil
author
Cameron Moore
<moorereason@gmail.com>
Sun, 15 Nov 2015 19:53:12 +0000
(13:53 -0600)
committer
Bjørn Erik Pedersen
<bjorn.erik.pedersen@gmail.com>
Fri, 20 Nov 2015 22:34:30 +0000
(23:34 +0100)
If a shortcode template fails to compile, the template will be non-nil, but
template.Tree will be nil which caused a panic.
hugolib/shortcode.go
patch
|
blob
|
history
diff --git
a/hugolib/shortcode.go
b/hugolib/shortcode.go
index 5fb9b7cc8cfaa1cd70c677f2e8b378b33ecd2b85..e65a859892b2b63d14e4f14eaa8c0906039abfcd 100644
(file)
--- a/
hugolib/shortcode.go
+++ b/
hugolib/shortcode.go
@@
-343,6
+343,9
@@
Loop:
if tmpl == nil {
return sc, fmt.Errorf("Unable to locate template for shortcode '%s' in page %s", sc.name, p.BaseFileName())
}
+ if tmpl.Tree == nil {
+ return sc, fmt.Errorf("Template for shortcode '%s' failed to compile for page '%s'", sc.name, p.BaseFileName())
+ }
isInner = isInnerShortcode(tmpl)
case tScParam: