Fix GroupByParam to return original param string
authorTatsushi Demachi <tdemachi@gmail.com>
Tue, 10 Nov 2015 13:02:45 +0000 (22:02 +0900)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 10 Nov 2015 13:57:03 +0000 (14:57 +0100)
commit139be09f1739238e757271058bb3cf0efec779c6
treef753466cb31cef9cfd2b8cea78859977676f957d
parentbccf957e36346390336b172d10aae60bde90e397
Fix GroupByParam to return original param string

Page.GroupByParam function internally uses Page.GetParam to get a
parameter value for a key of a page group but now Page.GetParam returns
a lowercase character string every time. It has no need to using
lowercase character string as a group key value and it confuse a
function user.

This fixes it to keep and return an original parameter string as a group
key value.

Fix #1564
hugolib/pageGroup.go
hugolib/pageGroup_test.go