Further work on path/section stuff. Tests passing now.

This commit is contained in:
spf13
2013-08-14 08:57:14 -04:00
parent b4bcc591e4
commit 480e01eb15
5 changed files with 65 additions and 62 deletions

View File

@@ -39,10 +39,5 @@ type UrlPath struct {
}
func (n *Node) GetSection() string {
s := ""
if n.Section != "" {
s = n.Section
}
return s
return n.Section
}