Fixed section labels causing panic on windows.
authorNoah Campbell <noahcampbell@gmail.com>
Thu, 1 Aug 2013 20:27:07 +0000 (13:27 -0700)
committerNoah Campbell <noahcampbell@gmail.com>
Thu, 1 Aug 2013 20:27:56 +0000 (13:27 -0700)
The filename path was being split using a unix specific path seperator.  This fix uses the os.PathSeperator to ensure proper evaluation regardless of platform.

hugolib/page.go

index 7541257d05e7f1fa72b47fc3da7ab89b6ada308b..ff00493b212bd4afa8ecacc676649c46621c6b3a 100644 (file)
@@ -91,7 +91,7 @@ func initializePage(filename string) (page Page) {
 }
 
 func (p *Page) setSection() {
-       x := strings.Split(p.FileName, "/")
+       x := strings.Split(p.FileName, string(os.PathSeparator))
 
        if section := x[len(x)-2]; section != "content" {
                p.Section = section