Fix string comparison for .Truncated page variable
authorAnthony Fok <foka@debian.org>
Tue, 20 Jan 2015 22:50:32 +0000 (15:50 -0700)
committerAnthony Fok <foka@debian.org>
Tue, 20 Jan 2015 22:50:32 +0000 (15:50 -0700)
commit02da49597dce2e8206495eb3f778b22126ca6724
treecbebc3a8929ed3f0725280e206e1a40409b4b2c2
parenta17c290a33bd44fd058f44c994893df892f783f6
Fix string comparison for .Truncated page variable

Instead of `strings.TrimSpace()`, use `strings.Join(strings.Fields(s), " ")`
to collapse all whitespaces into single spaces, in order to match the
behaviour of helpers.TruncateWordsToWholeSentence(),
in order to detect non-truncated content correctly.
hugolib/page.go