diff options
Diffstat (limited to 'server/ui/controller/static.go')
-rw-r--r-- | server/ui/controller/static.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/ui/controller/static.go b/server/ui/controller/static.go index 7b6a1def..a8513501 100644 --- a/server/ui/controller/static.go +++ b/server/ui/controller/static.go @@ -13,7 +13,7 @@ import ( ) func (c *Controller) Stylesheet(ctx *core.Context, request *core.Request, response *core.Response) { - stylesheet := request.GetStringParam("name", "white") + stylesheet := request.StringParam("name", "white") body := static.Stylesheets["common"] etag := static.StylesheetsChecksums["common"] |